From 1c4d11b920b5849e50f38e70dba194a5f37f009a Mon Sep 17 00:00:00 2001 From: Conan Scott Date: Wed, 7 Jan 2026 18:01:24 +1100 Subject: [PATCH] added argo-helm.yaml and added to .gitignore --- argo-helm.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 argo-helm.yaml diff --git a/argo-helm.yaml b/argo-helm.yaml new file mode 100644 index 0000000..4aa3c0a --- /dev/null +++ b/argo-helm.yaml @@ -0,0 +1,25 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: vault + namespace: openshift-gitops +spec: + project: infrastructure + destination: + server: https://kubernetes.default.svc + namespace: vault + source: + repoURL: https://gitea.apilab.us/cscott/vault.git + targetRevision: main + path: . + helm: + valueFiles: + - values.yaml + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true + - ApplyOutOfSyncOnly=true + - PruneLast=true