From e72ec09ce9537971804bf38b1eaa83b2858e3d31 Mon Sep 17 00:00:00 2001 From: Sebastian Mark Date: Sat, 29 Jul 2023 17:49:40 +0200 Subject: [PATCH] feat: add argocd application definition --- argocd_app.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 argocd_app.yml diff --git a/argocd_app.yml b/argocd_app.yml new file mode 100644 index 0000000..c6d13b4 --- /dev/null +++ b/argocd_app.yml @@ -0,0 +1,27 @@ +--- +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: cluster-deployments + namespace: argocd +spec: + project: default + source: + repoURL: 'https://git.smsvc.net/k8s/cluster-deployments.git' + path: manifests/ + targetRevision: HEAD + directory: + recurse: true + destination: + server: 'https://kubernetes.default.svc' + namespace: argocd + syncPolicy: + automated: + prune: true + selfHeal: true + retry: + limit: 5 + backoff: + duration: 5s + factor: 2 + maxDuration: 5m