Minikube
Local Kubernetes, focused on application development & education
minikube.sigs.k8s.io, kubernetes/minikube
Quick start
Installation
Follow the instructions given in the Getting Started page.
More information on Installing Kubernetes with Minikube page.
Make sure Docker Desktop has allocated at least 3 Go of RAM.
Run/stop
Important: If you're on Windows, open a command window as admin.
Run:
(Optional)
minikube config set vm-driver hyperv
to set the default driver (here Hyper-V driver)minikube start
to start the Kubernetes nodeminikube status
to get the overall statusminikube pause
to pause itminikube stop
to stop it
Dashboard
Run minikube dashboard
to open the web dashboard.
Kubernetes CLI
Run kubectl config use-context minikube
to be able to use kubectl on your local Kubernetes instance.
CLI reference
Clean-up
Run minikube delete
and, if needed, delete the .kube
and .minikube
folder in your home directory.
Extensions
Known issues
Incorrect date (can lead to errors with Docker pull)
Last updated