Basically this is what this website is sitting on.
Find a file
2026-02-27 19:50:22 +01:00
apps (revert): Back off the secrets to see if it's working without 2026-02-27 14:58:18 +01:00
charts (feat): Add persistance linked to folder in forgejo 2026-02-27 19:50:22 +01:00
.gitignore (fix): Sops encryption not working 2026-02-24 12:27:10 +01:00
.sops.yaml (chore): Phase out the secrets 2026-02-26 14:47:18 +01:00
README.md (feat): Add Authentik and sops config 2026-01-14 13:47:49 +01:00

kubectl -n argocd create secret generic sops-age
--from-file=age.key

age-keygen -o age.key

kubectl patch deployment argocd-repo-server -n argocd
--type='json'
-p='[ { "op": "add", "path": "/spec/template/spec/volumes/-", "value": { "name": "sops-age", "secret": { "secretName": "sops-age" } } }, { "op": "add", "path": "/spec/template/spec/containers/0/volumeMounts/-", "value": { "name": "sops-age", "mountPath": "/etc/sops", "readOnly": true } }, { "op": "add", "path": "/spec/template/spec/containers/0/env/-", "value": { "name": "SOPS_AGE_KEY_FILE", "value": "/etc/sops/age.key" } } ]'