LinuxCommandLibrary

minikube

minikube

TLDR

Start the cluster

$ minikube start
copy


Get the IP address of the cluster
$ minikube ip
copy


Access a service named my_service exposed via a node port and get the URL
$ minikube service [my_service] --url
copy


Open the Kubernetes dashboard in a browser
$ minikube dashboard
copy


Stop the running cluster
$ minikube stop
copy


Delete the cluster
$ minikube delete
copy


Connect to LoadBalancer services
$ minikube tunnel
copy

Copied to clipboard