snippetbashTip
minikube — Run Kubernetes locally. More information: <https://minikube.sigs.k8s.io/docs/>.
Viewed 0 times
commandrunminikubeclimoreinformationkuberneteslocally
Problem
How to use the
minikube command: Run Kubernetes locally. More information: <https://minikube.sigs.k8s.io/docs/>.Solution
minikube — Run Kubernetes locally. More information: <https://minikube.sigs.k8s.io/docs/>.Start the cluster:
minikube startGet the IP address of the cluster:
minikube ipAccess a service named
my_service exposed via a node port and get the URL:minikube service {{my_service}} --urlOpen the Kubernetes dashboard in a browser:
minikube dashboardStop the running cluster:
minikube stopDelete the cluster:
minikube deleteConnect to LoadBalancer services:
minikube tunnelCode Snippets
Start the cluster
minikube startGet the IP address of the cluster
minikube ipAccess a service named `my_service` exposed via a node port and get the URL
minikube service {{my_service}} --urlOpen the Kubernetes dashboard in a browser
minikube dashboardStop the running cluster
minikube stopContext
tldr-pages: common/minikube
Revisions (0)
No revisions yet.