Home > Back-end >  Cant create k8s dashboard service account
Cant create k8s dashboard service account

Time:05-17

enter image description here

I followed this tutorial https://github.com/kubernetes/dashboard/blob/master/docs/user/access-control/creating-sample-user.md However, after finished all steps, i stll cant see any account while using kubectl get secreats command.

CodePudding user response:

you should be using below command to list the service accounts

kubectl get sa -n <namespace>
  • Related