From 3ad316c73d7a71a06423ccda46b2c3b3a1ae32cd Mon Sep 17 00:00:00 2001 From: Vojtech Mares Date: Thu, 16 Nov 2023 08:18:46 +0100 Subject: [PATCH] feat: add argo-cd self-contained app --- bootstrap/argo-cd.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 bootstrap/argo-cd.yaml diff --git a/bootstrap/argo-cd.yaml b/bootstrap/argo-cd.yaml new file mode 100644 index 0000000..136e8f1 --- /dev/null +++ b/bootstrap/argo-cd.yaml @@ -0,0 +1,27 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + labels: + app.kubernetes.io/name: argo-cd + name: argo-cd + namespace: argocd +spec: + destination: + namespace: argocd + server: https://kubernetes.default.svc + ignoreDifferences: + - group: argoproj.io + jsonPointers: + - /status + kind: Application + project: default + source: + path: bootstrap/argo-cd + repoURL: https://github.com/vojtechmares/cthulhunetes-gitops.git + syncPolicy: + automated: + allowEmpty: true + prune: true + selfHeal: true + syncOptions: + - allowEmpty=true