Kubernetes Dashboard: Service Accounts

11/27/2018

Is it possible to view Service Accounts via the Kubernetes Dashboard?

I can see a token that was created for the Service Account under Secrets but struggling to actually find the Service Account listed anywhere.

-- Snowcrash
kubernetes

1 Answer

11/28/2018

There is no way to list all Service Acccounts under specific submenu in Kubernetes Dashboard but you can view owner Service Account of Secrets by clicking on them under Details/Annotations: section as kubernetes.io/service-account.name: <service-account-name>

For additional information, you can visit below links: Web UI (Dashboard).

And also for github project https://github.com/kubernetes/dashboard/

Hope it will be useful for you

-- coolinuxoid
Source: StackOverflow