argo1/secrets
2023-07-12 11:28:50 -05:00
..
bitwarden-user-sealed.yaml add bitwarden user 2023-07-12 11:28:50 -05:00
git-creds.yaml update git creds with new token 2023-06-30 21:00:01 -05:00
README.md initial import 2023-04-23 21:56:38 -05:00

Secrets.

Any manifests in this folder ending in .yaml will be installed.

It is recommended that SealedSecrets or similar are used to avoid directly including secrets in your Git repo.

For example, the sample secret may be modified and then sealed.

cp git-creds-plain.yaml.sample git-creds-plain.yaml
vi git-creds-plain.yaml
kubeseal -o yaml < git-creds-plain.yaml > git-creds.yaml
rm git-creds-plain.yaml
git add git-creds.yaml
git commit -m 'add git-creds sealed secret'
git push