From 9f46c94dff3c58fba341e42f7367033cdaaed57c Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Wed, 7 Jan 2026 18:54:15 +0900 Subject: [PATCH] Disable ArgoCD polling - webhook only - Set timeout.reconciliation to 0 (disabled) - ArgoCD now relies solely on GitHub webhooks for refresh - Reduces unnecessary reconciliation cycles --- argocd/manifests/argocd-cm.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/argocd/manifests/argocd-cm.yaml b/argocd/manifests/argocd-cm.yaml index 168d1bd..95a10b6 100644 --- a/argocd/manifests/argocd-cm.yaml +++ b/argocd/manifests/argocd-cm.yaml @@ -10,5 +10,5 @@ data: # Enable anonymous access (Authelia handles authentication) users.anonymous.enabled: "true" # Reconciliation interval (default: 180s) - # Set to 24h to reduce memory usage - manual Refresh/Sync when needed - timeout.reconciliation: "24h" + # Set to 0 to disable polling - webhook only + timeout.reconciliation: "0"