diff --git a/README.md b/README.md index 7ffb185..ca4f245 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ Kubernetes is an open‑source platform that automates the deployment, scaling, - [Manifest - StringData](#manifest---stringdata) - [Inline with heredoc and environment variables](#inline-with-heredoc-and-environment-variables) - [substr](#substr) +- [service accounts](#service-accounts) ## k3s @@ -301,3 +302,11 @@ set +a envsubst < ./secret.yaml | kubectl apply -f - ``` + +## service accounts + +**Get service account token:** + +```bash +kubectl get secret continuous-deploy -o jsonpath='{.data.token}' | base64 -d +```