Initial commit

This commit is contained in:
2025-03-22 14:29:48 +01:00
commit da7781035d
87 changed files with 3160 additions and 0 deletions

7
.pre-commit-sops.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
for filename in "$@"; do
if [[ "${filename}" =~ values.ya?ml$ ]] || [[ "${filename}" =~ secrets?.ya?ml$ ]]; then
sops -e -i "${filename}"
git add "${filename}"
fi
done