From 9f07a12e6b180ea8931cc572974097abaab20ce0 Mon Sep 17 00:00:00 2001 From: Ruben Hensen Date: Sat, 7 Sep 2024 09:05:49 +0200 Subject: [PATCH] Add vault folder --- apps/templates/vault.yaml | 19 +++++++++++++++++++ {apps/templates => vault}/helm-vault.yaml | 2 +- {apps => vault}/overrides.yaml | 0 3 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 apps/templates/vault.yaml rename {apps/templates => vault}/helm-vault.yaml (94%) rename {apps => vault}/overrides.yaml (100%) diff --git a/apps/templates/vault.yaml b/apps/templates/vault.yaml new file mode 100644 index 0000000..dbdda71 --- /dev/null +++ b/apps/templates/vault.yaml @@ -0,0 +1,19 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: vault + namespace: argocd + finalizers: + - resources-finalizer.argocd.argoproj.io +spec: + project: default + source: + repoURL: https://github.com/rubenhensen/k8scd.git + targetRevision: HEAD + path: vault + destination: + server: https://kubernetes.default.svc + namespace: vault + syncPolicy: + syncOptions: + - CreateNamespace=true \ No newline at end of file diff --git a/apps/templates/helm-vault.yaml b/vault/helm-vault.yaml similarity index 94% rename from apps/templates/helm-vault.yaml rename to vault/helm-vault.yaml index 2a5cd6c..3478eae 100644 --- a/apps/templates/helm-vault.yaml +++ b/vault/helm-vault.yaml @@ -16,7 +16,7 @@ spec: targetRevision: 0.28.1 helm: valueFiles: - - ../overrides.yaml + - overrides.yaml destination: server: https://kubernetes.default.svc diff --git a/apps/overrides.yaml b/vault/overrides.yaml similarity index 100% rename from apps/overrides.yaml rename to vault/overrides.yaml