Post

Minikube CMDsheet

Common Commands:

CommandDescription
minikube startTo start the cluster
minikube statusTo check the status
minikube stopTo stop the cluster
minikube deleteTo delete the cluster
minikube logsTo access the logs
minikube versionTo get the version
minikube ipTo get the IP address of the running cluster
minikube dashboardTo access the dashboard
minikube pauseTo pause the cluster
minikube unpauseTo resume the cluster
minikube service listTo list the services running on the cluster
minikube start --nodes 2To start minikube with multiple nodes
minikube start -p <profile_name>To run multiple clusters with different profiles
minikube update-checkTo check if there are any updates available for minikube

Profiles

minikube profile listTo list the profiles
minikube start -p <profile_name>To run multiple cluster with profiles
minikube start -p profileXTo switch between profiles

Nodes

CommandDescription
minikube node add To add node to cluster
minikube node add -p <profile_name>To add node to cluster to a specific profile
kubectl get nodes To list the number of nodes in the cluster
This post is licensed under CC BY 4.0 by the author.