How To Create and Inspect a Kubernetes Service Account

1

Create a new service account.

kubectl create serviceaccount <account_name>
2

Retrieve details of the created service account in JSON format.

kubectl get serviceaccounts <account_name> -o json