Initial commit

This commit is contained in:
Phoenix Group 2025-04-10 11:39:06 +00:00
commit 3090bae888
12 changed files with 270 additions and 0 deletions

7
scripts/rewrap-secrets.sh Executable file
View file

@ -0,0 +1,7 @@
#!/bin/sh
FOLDER="$(dirname "$(dirname "$(readlink -f "$0")")")"
#find $FOLDER -type f -name ".+\.secret(\.sops)?\.ya?ml"
for f in $(find $FOLDER -type f -name "*secret.sops.yaml"); do
cd $(dirname $f)
sops updatekeys --yes $f
done