Skip to content

Latest commit

 

History

History
28 lines (15 loc) · 720 Bytes

4.6.-service-accounts.md

File metadata and controls

28 lines (15 loc) · 720 Bytes

Accounts

A service account provides an identity for processes that run in a Pod.

For more information about Service Accounts checkout the Kubernetes User Guide.

Create a Service Account

Kubernetes will generate automatically a default Service Account on each Namespace.

Let's create an example Service Account: on kubernetic namespace:

kubectl create serviceaccount example --namespace kubernetic

Pod Management > Accounts: Example Service Account

Cleanup

Delete the example Service Account:

kubectl delete serviceaccount example --namespace kubernetic