FIX(argocd): disable app-resync to prevent periodic spikes

- Set controller.app.resync to 0 (default 180s)
- Rely on webhook + selfHeal only
- Fixes 3-minute periodic reconciliation causing CPU/memory spikes
This commit is contained in:
2026-01-08 02:44:48 +09:00
parent 2e2f75dd6b
commit bd1b3c9d85

View File

@@ -9,3 +9,7 @@ metadata:
data: data:
# Run ArgoCD server in insecure mode (let ingress handle TLS) # Run ArgoCD server in insecure mode (let ingress handle TLS)
server.insecure: "true" server.insecure: "true"
# Disable periodic app resync (rely on webhook + self-heal only)
# Default is 180s, setting to 0 disables periodic resync
controller.app.resync: "0"