How to find the associated service account for Helm? How to find the associated service account for Helm? kubernetes kubernetes

How to find the associated service account for Helm?


Helm 3 will have the same permissions according to your system environment variable $KUBECONFIG which defaults to ~/.kube/config or using the following options

      --kube-context string              name of the kubeconfig context to use      --kubeconfig string                path to the kubeconfig file

With Tiller gone, the security model for Helm is radically simplified. Helm 3 now supports all the modern security, identity, and authorization features of modern Kubernetes. Helm’s permissions are evaluated using your kubeconfig file. Cluster administrators can restrict user permissions at whatever granularity they see fit. — Changes since Helm 2: Removal of Tiller