Using google Kubernetes engine:
kubectl cluster-info
kubernetes-dashboard is running at https://x.x.x.x/api/v1/namespaces/kube-system/services/kubernetes-dashboard/proxy
If I go to the link:
I get to a forbidden page and if I accepts I get the following:
{
"kind": "Status",
"apiVersion": "v1",
"metadata": {
},
"status": "Failure",
"message": "services \"kubernetes-dashboard\" is forbidden: User \"system:anonymous\" cannot get services/proxy in the namespace \"kube-system\": Unknown user \"system:anonymous\"",
"reason": "Forbidden",
"details": {
"name": "kubernetes-dashboard",
"kind": "services"
},
"code": 403
}
Is it not possible to access the dashboard?
This message says, you should login with valid authentication to the UI Dashboard it can be with token or cluster config. If you want to login using token, follow the steps below:
Get list of all secret tokens:
kubectl -n kube-system get secret
Get the token:
kubectl -n kube-system describe secret [NameOfToken]
Run Proxy:
kubectl proxy
Enter the dashboard link:
Copy the token and order it in one line and put it on dashboard UI
That url points to the Kubernetes API that requires authentication, and it's not the place to access the dashboard via web.
If you want to access the kubernetes dashboard, there are different options
NodePort
. Then you can access the dashboard on node_public_ip:NodePort
.