https://github.com/bromaniac/sealed-secret-helper
Encrypt multiple tab separated key values as sealed secrets in Kubernetes.
https://github.com/bromaniac/sealed-secret-helper
awk awk-script kubernetes sealed-secrets unlicense
Last synced: about 2 months ago
JSON representation
Encrypt multiple tab separated key values as sealed secrets in Kubernetes.
- Host: GitHub
- URL: https://github.com/bromaniac/sealed-secret-helper
- Owner: bromaniac
- License: unlicense
- Created: 2022-12-15T15:01:01.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-11T09:26:05.000Z (over 3 years ago)
- Last Synced: 2025-08-22T14:00:12.000Z (10 months ago)
- Topics: awk, awk-script, kubernetes, sealed-secrets, unlicense
- Language: Awk
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Usage:
Put your key and value separated by a tab in a file. One pair per line.
Then:
```
./ssh.awk -v NAMESPACE=foo SECRET_NAME=bar < data.txt > secret.yaml
kubeseal -f secret.yaml -n foo -o yaml
```
Your sealed secret file will be printed to stdout.