See this page for more details about Kubernetes Web UI (Dashboard):
https://kubernetes.io/docs/tasks/access-application-cluster/web-ui-dashboard/
-
Open MiniKube dashboard:
$ minikube dashboard
This command will launch MiniKube dashboard in your default browser.
-
Access MiniKube dashboard remotely:
First, make sure to start the dashboard.
You can either use the command above or you can use the option --url=true to start the dashboard and display the URL without opening a browser
(this might be useful if you are starting the dashboard from a remote shell):
$ minikube dashboard --url=true
🤔 Verifying dashboard health ...
🚀 Launching proxy ...
🤔 Verifying proxy health ...
http://127.0.0.1:35317/api/v1/namespaces/kubernetes-dashboard/services/http:kubernetes-dashboard:/proxy/
To access the dashboard remotely, run the following command:
$ kubectl proxy --address='0.0.0.0' --disable-filter=true
W0728 09:49:56.879888 20882 proxy.go:167] Request filter disabled, your proxy is vulnerable to XSRF attacks, please be cautious
Starting to serve on [::]:8001
To access MiniKube dashboard, open your favorite browser and copy paste the URL:
http://192.168.2.22:8001/api/v1/namespaces/kubernetes-dashboard/services/http:kubernetes-dashboard:/proxy/: