From 0ba23b693a3b62b8031a49780ece627b1fc03918 Mon Sep 17 00:00:00 2001 From: Vojtech Mares Date: Sat, 11 May 2024 14:52:13 +0200 Subject: [PATCH] feat(apps): add postgres app --- apps/postgres/postgres.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 apps/postgres/postgres.yaml diff --git a/apps/postgres/postgres.yaml b/apps/postgres/postgres.yaml new file mode 100644 index 0000000..c003c22 --- /dev/null +++ b/apps/postgres/postgres.yaml @@ -0,0 +1,24 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: postrges + namespace: argocd + annotations: + argocd.argoproj.io/sync-wave: "50" + finalizers: + - resources-finalizer.argocd.argoproj.io +spec: + project: postgres + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true + source: + path: manifests/postgres/ + repoURL: git@gitlab.mareshq.com:hq/cthulhunetes/gitops.git + targetRevision: HEAD + destination: + server: "https://kubernetes.default.svc" + namespace: default