-
-
Save tungphan-agilityio/01a34fb359b132754fb1471dba1f8a5c to your computer and use it in GitHub Desktop.
Minikube Cheatsheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| minikube start # Start Minikube Service | |
| minikube start --cpus 4 --memory 8192 # Start Minikube Service with 4 cpus and 8192 of memory | |
| minikube stop # Stop Mikikube Service | |
| minikube delete # Clean the configurations and start clean (maybe also you need rm -rf ./minikube) | |
| minikube get-k8s-versions # List of Kubernetes versions Minikube currently supports | |
| minikube start --kubernetes-version v1.7.5 # Start with a specific version of k8s | |
| minikube ip # View ip of Cluster | |
| minikube dashboard # Open the Dashboard | |
| minikube dashboard --url # Get the Dashboard URL | |
| minikube service --url SERVICE # Get the URL of service | |
| minikube status # View the status of minikube, cluster and kubectl (Something ips change) | |
| minikube update-context # Fix ips change, kubectl misconfigured |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment