- Set timeout.reconciliation to 0 (disabled) - ArgoCD now relies solely on GitHub webhooks for refresh - Reduces unnecessary reconciliation cycles
15 lines
388 B
YAML
15 lines
388 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: argocd-cm
|
|
namespace: argocd
|
|
labels:
|
|
app.kubernetes.io/name: argocd-cm
|
|
app.kubernetes.io/part-of: argocd
|
|
data:
|
|
# Enable anonymous access (Authelia handles authentication)
|
|
users.anonymous.enabled: "true"
|
|
# Reconciliation interval (default: 180s)
|
|
# Set to 0 to disable polling - webhook only
|
|
timeout.reconciliation: "0"
|