1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 11:55:24 +02:00

kubeseal: add page (#16030)

* Create kubeseal.md

* Update kubeseal.md

* Update kubeseal.md
This commit is contained in:
Machiavelli 2025-03-28 07:57:21 +02:00 committed by GitHub
parent 67b7b8ff69
commit bdf3762819
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

38
pages/common/kubeseal.md Normal file
View file

@ -0,0 +1,38 @@
# kubeseal
> Client-side utility for encrypting Kubernetes secrets using the Bitnami Sealed Secrets controller.
> Creates SealedSecret resources that can be safely stored in version control.
> Requires a controller running in the cluster (e.g., installed via `kubectl apply -f controller.yaml`).
> More information: <https://github.com/bitnami-labs/sealed-secrets>.
- Encrypt a Kubernetes secret from a YAML file into a SealedSecret (default JSON output):
`kubeseal < {{secret.yaml}} > {{sealedsecret.json}}`
- Encrypt a secret, outputting it in YAML or JSON format, using a bearer token for API authentication:
`kubeseal {{[-o|--format]}} {{yaml|json}} --token {{my-bearer-token}} < {{secret.yaml}} > {{sealedsecret.yaml}}`
- Seal a secret using a specific controller namespace of sealed-secrets controller and name:
`kubeseal --controller-namespace {{controller-namespace}} --controller-name {{controller-name}} < {{secret.yaml}} > {{sealedsecret.yaml}}`
- Encrypt a raw secret value from a file with a specified name and scope:
`kubeseal --raw --from-file {{path/to/secret.txt}} --name {{my-secret}} --scope {{strict|namespace-wide|cluster-wide}} > {{sealedsecret.yaml}}`
- Fetch the controller's public certificate for offline sealing with basic auth:
`kubeseal --fetch-cert --username {{username}} --password {{password}} > {{cert.pem}}`
- Seal a secret offline using a fetched certificate:
`kubeseal --cert {{cert.pem}} < {{secret.yaml}} > {{sealedsecret.yaml}}`
- Merge a secret into an existing SealedSecret file in-place:
`kubeseal --merge-into {{sealedsecret.yaml}} < {{secret.yaml}}`
- Validate a SealedSecret without applying it:
`kubeseal --validate < {{sealedsecret.yaml}}`