I am using kops
in AWS to create my Kubernetes cluster.
I have created a cluster with RBAC enabled via --authorization=RBAC
as described here.
I am trying to use the default service account token to interact with the cluster and getting this error:
Error from server (Forbidden): User "system:serviceaccount:default:default" cannot list pods in the namespace "default". (get pods)
Am I missing a role or binding somewhere?
kubectl get clusterrolebinding -o wide
. – waldauf