989 B
989 B
Dashboard
Minikube supports the Kubernetes Dashboard out of the box.
Accessing the UI
To access the dashboard:
minikube dashboard
This will enable the dashboard add-on, and open the proxy in the default web browser.
To stop the proxy (leaves the dashboard running), abort the started process (Ctrl+C
).
Individual steps
If the automatic command doesn't work for you for some reason, here are the steps:
$ minikube addons enable dashboard
✅ dashboard was successfully enabled
If you have your kubernetes client configured for minikube, you can start the proxy:
$ kubectl --context minikube proxy
Starting to serve on 127.0.0.1:8001
Access the dashboard at:
http://localhost:8001/api/v1/namespaces/kube-system/services/http:kubernetes-dashboard:/proxy/
For additional information, see this page.