Erste Implementierung

This commit was merged in pull request #1.
This commit is contained in:
2022-02-17 23:36:27 +01:00
parent 57a135fedf
commit 93968d9c2d
25 changed files with 5041 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
export WORKDIR=$(dirname $0)
cd $WORKDIR
kubectl apply -n flux-system -f flux-components.yaml
sops exec-file local-git-secret.yaml "kubectl apply -n flux-system -f {}"
kubectl create secret -n flux-system generic age-key-secret --from-file age.agekey=../../../../local-k8s/keys/age.agekey --dry-run=client -o yaml | kubectl apply -f-
kubectl apply -n flux-system -f flux-sync.yaml
flux reconcile source git -n flux-system flux-system
cd -