0

I was attempting to get the dashboard pod enabled on a new microk8s cluster.

How to access micro8ks's dashboard web UI?

I am trying to just get some basic info

microk8s kubectl cluster-info

and get this

E0331 18:08:44.908516   10120 memcache.go:265] couldn't get current server API group list: Get "https://10.0.2.15:16443/api?timeout=32s": dial tcp 10.0.2.15:16443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
Pie
  • 101
  • 2

1 Answers1

0

Looks like the MicroK8s instance is down or misconfigured.

To confirm MicroK8s is up -

# Try this:
microk8s version

Or simply try to start MicroK8s:

microk8s start

If still failing, run microk8s status to see the list of supported features
and see which of them is enabled.
(may need to enable some more features)

If Still Failing, try reinstalling MicroK8s - for example:

microk8s uninstall
(...)
microk8s install --channel=1.29/stable

See also MicroK8s > Tutorials > Getting started

Gonen
  • 133