From f3142ee98b127583050055cb7c53eb0dc1455d53 Mon Sep 17 00:00:00 2001 From: Vojtech Mares Date: Thu, 16 Nov 2023 21:36:46 +0100 Subject: [PATCH] feat: add postgres app to shared-resources project --- apps/shared-resources/postgres.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 apps/shared-resources/postgres.yaml diff --git a/apps/shared-resources/postgres.yaml b/apps/shared-resources/postgres.yaml new file mode 100644 index 0000000..89c755d --- /dev/null +++ b/apps/shared-resources/postgres.yaml @@ -0,0 +1,20 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: postgres + namespace: argocd + annotations: + argocd.argoproj.io/sync-wave: "20" +spec: + project: shared-resources + syncPolicy: + automated: + prune: true + selfHeal: true + source: + path: manifests/postgres/ + repoURL: https://github.com/vojtechmares/cthulhunetes-gitops.git + targetRevision: HEAD + destination: + server: "https://kubernetes.default.svc" + namespace: postgres