From 3092bd724001e4b8a4f5eb5ca0c2d377f07acba8 Mon Sep 17 00:00:00 2001 From: Andrey Kartashov Date: Sun, 27 Oct 2019 05:09:03 +0700 Subject: [PATCH] argocd: add argocd app --- main/templates/argocd.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 main/templates/argocd.yaml diff --git a/main/templates/argocd.yaml b/main/templates/argocd.yaml new file mode 100644 index 0000000..2930d7c --- /dev/null +++ b/main/templates/argocd.yaml @@ -0,0 +1,19 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: argocd + namespace: argocd + finalizers: + - resources-finalizer.argocd.argoproj.io +spec: + destination: + namespace: argocd + server: https://kubernetes.default.svc + project: default + source: + path: apps/argocd + repoURL: git@github.com:gorilych/gf-k8s + syncPolicy: + automated: + prune: true + selfHeal: true