From 6c387a7f7e7c64fea016000eb8fc0ea3d7308603 Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Fri, 9 Jan 2026 02:13:13 +0900 Subject: [PATCH] FEAT(argocd): add web-apps Application to platform - Register web-apps repository in App of Apps --- kustomization.yaml | 3 +++ web-apps/argocd.yaml | 29 +++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 web-apps/argocd.yaml diff --git a/kustomization.yaml b/kustomization.yaml index 363f71a..1a7bf75 100644 --- a/kustomization.yaml +++ b/kustomization.yaml @@ -12,3 +12,6 @@ resources: # ArgoCD self-management Application - argocd/argocd.yaml + + # Web Apps (App of Apps) + - web-apps/argocd.yaml diff --git a/web-apps/argocd.yaml b/web-apps/argocd.yaml new file mode 100644 index 0000000..0dfeb47 --- /dev/null +++ b/web-apps/argocd.yaml @@ -0,0 +1,29 @@ +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