minikube: Dashboard does not work
Is this a BUG REPORT or FEATURE REQUEST? (choose one): BUG REPORT
Minikube version (use minikube version): 0.16.0
Environment:
- OS (e.g. from /etc/os-release): Ubuntu 16.10
- VM Driver (e.g.
cat ~/.minikube/machines/minikube/config.json | grep DriverName): VirtualBox - ISO version (e.g.
cat ~/.minikube/machines/minikube/config.json | grep ISO): 1.0.6 - Install tools: Debian package
- Others:
What happened:
I typed minikube dashboard.
What you expected to happen: I expected the dashboard to open on my browser
How to reproduce it (as minimally and precisely as possible):
Install minikube with the debian distribution and type minikube dashboard.
Anything else do we need to know: These are the logs I got:
minikube dashboard --logtostderr --v=2
Could not find finalized endpoint being pointed to by kubernetes-dashboard: Temporary Error: endpoints "kubernetes-dashboard" not found
Temporary Error: endpoints "kubernetes-dashboard" not found
Temporary Error: endpoints "kubernetes-dashboard" not found
Temporary Error: endpoints "kubernetes-dashboard" not found
Temporary Error: endpoints "kubernetes-dashboard" not found
Temporary Error: endpoints "kubernetes-dashboard" not found
Temporary Error: endpoints "kubernetes-dashboard" not found
Temporary Error: endpoints "kubernetes-dashboard" not found
Temporary Error: endpoints "kubernetes-dashboard" not found
Temporary Error: endpoints "kubernetes-dashboard" not found
Temporary Error: endpoints "kubernetes-dashboard" not found
Temporary Error: endpoints "kubernetes-dashboard" not found
Temporary Error: endpoints "kubernetes-dashboard" not found
Temporary Error: endpoints "kubernetes-dashboard" not found
Temporary Error: endpoints "kubernetes-dashboard" not found
Temporary Error: endpoints "kubernetes-dashboard" not found
Temporary Error: endpoints "kubernetes-dashboard" not found
Temporary Error: endpoints "kubernetes-dashboard" not found
Temporary Error: endpoints "kubernetes-dashboard" not found
Temporary Error: endpoints "kubernetes-dashboard" not found
About this issue
- Original URL
- State: closed
- Created 7 years ago
- Comments: 21 (3 by maintainers)
In my case taking a coffee worked. Kubernetes need some time to get the pods ready (you can check it with
kubectl get pods --all-namespaces). Depending on your internet connection it can take a bit longer (I needed about 7 minutes)at beginning:
after 3 min:
after 7 min:
I had a DNS issue in xhyve. To fix the issue, I ran in
minikube ssh:This isn’t true. The dashboard sometimes can take some time to start up, which is what I think we’re seeing here.
@samuelchen That status indicates that the addon-manager is starting up. The addon-manager is responsible for deploying the dashboard, and sometimes this can take a little time to pull and start in addition to the dashboard starting up.
@hayesgm same problem here. I had to change /etc/systemd/resolved.conf (change
#DNSline toDNS=8.8.8.8) and restart systemd-resolved service ($ systemctl restart systemd-resolved)I meet the same problem.
The solution is:
@galvesribeiro you can use
minikube logsto check logs. I met the same issue as proxy config is required for docker. Check more on https://stackoverflow.com/questions/23111631/cannot-download-docker-images-behind-a-proxy After that, I can start the addon manage successSame problem here… 8hs and nothing happen… Is there a way to see logs to try understand what is happening?
Thanks! Appreciate any help.
When I start with 1.7.4 version flag. All pods empty:
yangyaos-iMac:deployment yangyao$ k8allpods No resources found.When I start with 1.7.0 default, then everything is working. Is anyone else encountering this behaviour?
@zedalaye’s solution worked for me coupled with
minikube stopandminikube start.