Ben Chuanlong Du's Blog

It is never too late to learn.

Tips on Minikube

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Microk8s is a more lightweight solution than Minikube (even thought Microk8s is only for Linux.)

Installation

  1. Install kubectl

  2. Install Minikube

  3. Start minikube.

    minikube start --vm-driver=hyperkit
    
  4. Check status of minikube.

    minikube status
    
  5. Launch minikube dashboard.

    minikube dashboard
    
  6. Show minikube IP.

    minikube ip
    

References

Comments