No description
Find a file
2025-03-27 17:07:13 +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
.envrc Add missing direnv conf 2025-03-01 20:02:03 +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
flake.lock flake: Update 2025-03-26 17:18:02 +01:00
flake.nix Try with sops 2025-03-27 16:52:50 +01:00
LICENSE Initial commit 2025-02-28 23:05:40 +01:00
README.md sops: Use subcommand 2025-03-27 17:07:13 +01:00

kubernetes-learn

Minikube

  • minikube start --driver=kvm2 --nodes=3 --kvm-qemu-uri=qemu:///system --kvm-network=default --cpus=8 --memory=8g
  • minikube delete --purge
  • minikube addons enable metrics-server
  • minikube dashboard
  • minikube addons enable ingress
  • curl --resolve "nginx.example:80:$( minikube ip )" -i http://nginx.example

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"