modified: README.md

This commit is contained in:
2025-11-29 12:54:40 +00:00
parent c63063f1d3
commit d742133f57

View File

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