Skip to content
Advertisement

“The ClusterRoleBinding “kubernetes-dashboard” is invalid: roleRef: Invalid value” when deploying Web UI

I’m trying to deploy Kubernetes Web UI as described here: https://kubernetes.io/docs/tasks/access-application-cluster/web-ui-dashboard/

My system configuration is as follows:

JavaScript

After starting the minukube cluster minikube start I created a Service Account and ClusterRoleBinding as described here: https://github.com/kubernetes/dashboard/blob/master/docs/user/access-control/creating-sample-user.md

JavaScript
JavaScript
JavaScript
JavaScript
JavaScript

Now I execute:

JavaScript

or

JavaScript

and get the following output:

JavaScript

What happened and how to fix it?

Advertisement

Answer

issue is you missed this note :

NOTE: apiVersion of ClusterRoleBinding resource may differ between Kubernetes versions.

Prior to Kubernetes v1.8 the apiVersion was rbac.authorization.k8s.io/v1beta1.

This should solve this problem.

Edit1:

this issue talks about same problem. specifically this comment. talks about

Role bindings are immutable

Cause here is

dashboard-adminuser.yaml sets roleRef.

and

yaml file you are applying later has roleRef in same namespace.

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement