
Starting, stop and delete the minikube node
minikube startminikube stopminikube delete / minikube delete --all (Delete all local clusters and profiles)Getting the minikube IPminikube ipGetting the url of a serviceminikube service web --urlUpgrading enviromentminikube start --kubernetes-version=latestListing, enable or disable the minikube addonsminikube addons listminikube addons dashboard enableminikube addons dashboard disableExposing a service as a NodePort (just for test enviroment)kubectl expose deployment hello-minikube --type=NodePort --port=8080
reference: https://minikube.sigs.k8s.io/docs/handbook/controls/
Post a Comment