From f62c02a1529f23c3bd4f03a26e10da3a92428b5f Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Sat, 3 Jan 2026 12:49:32 +0900 Subject: [PATCH] REVERT(repo): remove unused controllers yaml - ArgoCD deployments are not managed by this repo - Use 'kubectl scale' to disable unused controllers instead --- argocd/disable-unused-controllers.yaml | 28 -------------------------- argocd/kustomization.yaml | 1 - 2 files changed, 29 deletions(-) delete mode 100644 argocd/disable-unused-controllers.yaml diff --git a/argocd/disable-unused-controllers.yaml b/argocd/disable-unused-controllers.yaml deleted file mode 100644 index 59b0bec..0000000 --- a/argocd/disable-unused-controllers.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Disable unused ArgoCD controllers to save resources -# - notifications: Not using Slack/Discord alerts -# - applicationset: Not using ApplicationSet templates -# - dex: Using Authelia for SSO instead ---- -apiVersion: apps/v1 -kind: Deployment -metadata: - name: argocd-notifications-controller - namespace: argocd -spec: - replicas: 0 ---- -apiVersion: apps/v1 -kind: Deployment -metadata: - name: argocd-applicationset-controller - namespace: argocd -spec: - replicas: 0 ---- -apiVersion: apps/v1 -kind: Deployment -metadata: - name: argocd-dex-server - namespace: argocd -spec: - replicas: 0 diff --git a/argocd/kustomization.yaml b/argocd/kustomization.yaml index 771244d..dc5bb02 100644 --- a/argocd/kustomization.yaml +++ b/argocd/kustomization.yaml @@ -6,4 +6,3 @@ resources: - argocd-rbac-cm.yaml - argocd-cmd-params-cm.yaml - ingress.yaml -- disable-unused-controllers.yaml