From f80b1be7706f7e706fabbad00feb448e50a6097a Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Fri, 9 Jan 2026 02:22:37 +0900 Subject: [PATCH] CHORE(argocd): remove app-of-apps.yaml - Remove manual deployment file - Now managed via GitOps --- app-of-apps.yaml | 150 --------------------------------------------- kustomization.yaml | 3 - 2 files changed, 153 deletions(-) delete mode 100644 app-of-apps.yaml diff --git a/app-of-apps.yaml b/app-of-apps.yaml deleted file mode 100644 index 337a0d7..0000000 --- a/app-of-apps.yaml +++ /dev/null @@ -1,150 +0,0 @@ ---- -apiVersion: argoproj.io/v1alpha1 -kind: Application -metadata: - name: applications - namespace: argocd - finalizers: - - resources-finalizer.argocd.argoproj.io -spec: - project: default - source: - repoURL: https://github.com/K3S-HOME/applications.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 ---- -apiVersion: argoproj.io/v1alpha1 -kind: Application -metadata: - name: observability - namespace: argocd - finalizers: - - resources-finalizer.argocd.argoproj.io -spec: - project: default - source: - repoURL: https://github.com/K3S-HOME/observability.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 ---- -apiVersion: argoproj.io/v1alpha1 -kind: Application -metadata: - name: security - namespace: argocd - finalizers: - - resources-finalizer.argocd.argoproj.io -spec: - project: default - source: - repoURL: https://github.com/K3S-HOME/security.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 ---- -apiVersion: argoproj.io/v1alpha1 -kind: Application -metadata: - name: storage - namespace: argocd - finalizers: - - resources-finalizer.argocd.argoproj.io -spec: - project: default - source: - repoURL: https://github.com/K3S-HOME/storage.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 ---- -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 diff --git a/kustomization.yaml b/kustomization.yaml index d8a7e88..d03ff5a 100644 --- a/kustomization.yaml +++ b/kustomization.yaml @@ -5,9 +5,6 @@ resources: # Platform self-reference - application.yaml - # App of Apps (applications, observability, security, storage, web-apps) - - app-of-apps.yaml - # Core infrastructure - cert-manager/argocd.yaml - traefik/argocd.yaml