MiniKube

Updated: 23 February 2025

Start a local Kubernetes cluster

minikube start

Access the Kubernetes dashboard, running within the minikube cluster

minikube dashboard

Show the dashboard url, without opening a browser

minikube dashboard --url

minikube includes kubectl which can be used like this

minikube kubectl -- <kubectl commands>

Stop a Minikube cluster

minikube stop

Optionally, delete the Minikube VM

minikube delete

Leave a comment