From ea926e197276fac522fb556f89c40c79dd0032d6 Mon Sep 17 00:00:00 2001 From: Ryan Moon Date: Fri, 3 Apr 2026 18:41:28 -0500 Subject: [PATCH] feat: add App of Apps to auto-deploy customers from customers/ dir --- argocd/customers-app.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 argocd/customers-app.yaml diff --git a/argocd/customers-app.yaml b/argocd/customers-app.yaml new file mode 100644 index 0000000..e8c93c1 --- /dev/null +++ b/argocd/customers-app.yaml @@ -0,0 +1,18 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: customers + namespace: argocd +spec: + project: default + source: + repoURL: ssh://git@git-ssh.lunarfront.tech/ryan/lunarfront-charts.git + targetRevision: main + path: customers + destination: + server: https://kubernetes.default.svc + namespace: argocd + syncPolicy: + automated: + prune: true + selfHeal: true