no endpoints available for service for kubernetes dashboard

2/7/2019

According to following information, kubernetes-dashboard is creaded. I start kubectl prox to access the dashboard

[root@master ~]# kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/master/aio/deploy/recommended/kubernetes-dashboard.yaml
secret/kubernetes-dashboard-certs created
secret/kubernetes-dashboard-csrf created
serviceaccount/kubernetes-dashboard created
role.rbac.authorization.k8s.io/kubernetes-dashboard-minimal created
rolebinding.rbac.authorization.k8s.io/kubernetes-dashboard-minimal created
deployment.apps/kubernetes-dashboard created
service/kubernetes-dashboard created
[root@master ~]# kubectl proxy --address="192.168.88.43" -p 8001 --accept-hosts='^*
#x27;
Starting to serve on 192.168.88.43:8001

when I go below url

http://192.168.88.43:8001/api/v1/namespaces/kube-system/services/https:kubernetes-dashboard:/proxy/

i get the

{
  "kind": "Status",
  "apiVersion": "v1",
  "metadata": {

  },
  "status": "Failure",
  "message": "no endpoints available for service \"kubernetes-dashboard\"",
  "reason": "ServiceUnavailable",
  "code": 503
}
-- Zaw Than oo
kubernetes
kubernetes-dashboard

1 Answer

2/7/2019

I think you followed the Deploying the Dashboard UI but, you did not follow the whole installation process Creating a single master cluster with kubeadm correctly.

You might have missed:

You should now deploy a pod network to the cluster.

Run "kubectl apply -f [podnetwork].yaml" with one of the options listed at:

https://kubernetes.io/docs/concepts/cluster-administration/addons/

You can follow the Kubernetes documentation on how to Installing a pod network add-on.

Once done, you can verify if CNI is deployed and working using kubectl -n kube-system get pods.

If everything goes correctly your kubernetes-dashboard should be healthy and working.

-- Crou
Source: StackOverflow