Kubernetes Service Account Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
Line 26: Line 26:
kubectl -n <namespace> -o yaml get sa default
kubectl -n <namespace> -o yaml get sa default
</syntaxhighlight>
</syntaxhighlight>
=Deploy a Service Account, a Role and a Role Binding with a Helm Chart=
{{External|https://github.com/ovidiuf/playground/tree/master/helm/service-account-and-roles}}

Latest revision as of 17:51, 3 May 2021

Internal

Create a Service Account

With CLI

kubectl create serviceaccount -n <namespace> <service-account-name>
kubectl create serviceaccount -n blue blue-serviceaccount

It automatically creates the secret.

With Metadata

apiVersion: v1
kind: ServiceAccount
metadata:
  name: example-sa

It automatically creates the secret.

Details about the Namespace's Default Service Account

kubectl -n <namespace> -o yaml get sa default

Deploy a Service Account, a Role and a Role Binding with a Helm Chart

https://github.com/ovidiuf/playground/tree/master/helm/service-account-and-roles