No description
Find a file
2026-03-13 15:50:07 +01:00
mysql Try with sops 2025-03-27 16:52:50 +01:00
mysql_cluster mysql_cluster: Some changes 2025-03-27 15:58:14 +01:00
nginx Merge k8s config into one file 2025-03-27 10:58:47 +01:00
npins Migrate to kind to use podman 2026-03-13 15:50:07 +01:00
postgresql_cluster psql: Add Deploy cluster 2025-07-08 17:08:34 +02:00
sealed_secrets Update example conf for supabase to use dedicated secret 2025-06-17 12:05:51 +02:00
supabase supabase: Add all workaround 2025-06-19 11:42:40 +02:00
.envrc Migrate to kind to use podman 2026-03-13 15:50:07 +01:00
.gitattributes Try with sops 2025-03-27 16:52:50 +01:00
.gitignore Try with sops 2025-03-27 16:52:50 +01:00
.sops.yaml Try with sops 2025-03-27 16:52:50 +01:00
LICENSE Initial commit 2025-02-28 23:05:40 +01:00
README.md Migrate to kind to use podman 2026-03-13 15:50:07 +01:00
shell.nix Migrate to kind to use podman 2026-03-13 15:50:07 +01:00

kubernetes-learn

Sops

How run kubectl with sops

function sops_kubectl() {
    find . -type f -name '*secret.properties.enc' -exec sh -c 'sops decrypt "$1" > "${1%.enc}"' _ {} \;
    kubectl $@
    find . -type f -name '*secret.properties' -exec sh -c 'rm "$1"' _ {} \;
}

Git config

git config diff.sopsdiffer.textconv "sops decrypt"