From f7afc5558846fd5da8289eae67ffae8abd58eef3 Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Mon, 5 Jan 2026 01:57:05 +0900 Subject: [PATCH] FEAT(argocd): add App of Apps application.yaml - Add root Application for managing all web-apps --- application.yaml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 application.yaml diff --git a/application.yaml b/application.yaml new file mode 100644 index 0000000..8d9874f --- /dev/null +++ b/application.yaml @@ -0,0 +1,33 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: web-apps + namespace: argocd + finalizers: + - resources-finalizer.argocd.argoproj.io +spec: + project: default + + source: + repoURL: https://github.com/K3S-HOME/web-apps.git + targetRevision: main + path: . + + destination: + server: https://kubernetes.default.svc + namespace: argocd + + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true + retry: + limit: 5 + backoff: + duration: 5s + factor: 2 + maxDuration: 3m + + revisionHistoryLimit: 10