From d742133f575c6e71e0d00787fb6f9b4608395042 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Fernandes?= Date: Sat, 29 Nov 2025 12:54:40 +0000 Subject: [PATCH] modified: README.md --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) 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 +```