Skip to main content
ArgoCD performs reconciliation by polling Git and comparing the desired state to cluster state. By default ArgoCD polls at a relatively low frequency (often on the order of minutes). This guide shows how to tune ArgoCD’s pull-based reconciler to poll Git more frequently (for example, every 10s) by updating the argocd-cm ConfigMap and restarting the application controller so the new setting takes effect. Key steps
  • Edit the argocd-cm ConfigMap in the argocd namespace and set timeout.reconciliation to a duration string (for example, "10s").
  • Restart the ArgoCD application controller (Deployment or StatefulSet) so it loads the updated configuration.
  • Verify the new behavior by changing an ArgoCD-managed manifest in Git and observing faster reconciliation.
The image is a screenshot of the Argo CD documentation webpage, displaying information about automated sync semantics in Kubernetes, with a sidebar menu for navigation.

1. Edit the ConfigMap (set poll/reconciliation interval)

Open the argocd-cm ConfigMap in the argocd namespace and edit it:
Under the ConfigMap data: section add or update timeout.reconciliation with a duration string (examples: "10s", "60s", "1m"). The value must be a string. Minimal example to add:
If your ConfigMap already contains resource.customizations (for ignoring noisy fields or other behaviors), keep those entries. A common pattern includes resource.customizations.ignoreResourceUpdates.* to avoid unnecessary drift detection noise. Example entries you can keep or adapt:
Note: The exact customization keys and formats depend on your ArgoCD version and needs. The important setting for poll frequency is timeout.reconciliation.
After you save the edited ConfigMap, you must restart the ArgoCD application controller (Deployment or StatefulSet) so the controller picks up the new timeout.reconciliation value.

2. Restart the application controller

The application controller must be restarted to load the new ConfigMap value. Most ArgoCD installations use a Deployment named argocd-application-controller, but some use a StatefulSet. For a Deployment:
For a StatefulSet:
Confirm the rollout status:
Verify the ConfigMap contains the new timeout:
The image shows a GitHub issue page for the project "argo-cd," where an open issue titled "Timeout.Reconciliation setting not affecting polling frequency" is being discussed. The issue, labeled as a bug, includes a checklist and a description of the problem.

3. Verify with a deployment change (test reconciliation frequency)

Make a small change in the Git repo for an ArgoCD-managed app to confirm faster polling. In this demo we change the replica count of a Deployment. This is the manifest as stored in Git before the change:
Change replicas to a new value (for example 7), commit and push. Example updated manifest:
After pushing the change, ArgoCD will poll the Git repository according to the configured timeout.reconciliation (plus any processing time). Check the target namespace to observe pod scaling and reconciliation:
Timing may vary slightly due to controller scheduling and cluster load. If timeout.reconciliation: "10s" is set and the application controller was restarted, you should observe reconciliation occurring more frequently than the default (often within the configured interval plus controller processing time).

Quick reference — common commands

Troubleshooting tips

  • Ensure timeout.reconciliation is a quoted string value (for example "10s") under the ConfigMap data:; unquoted values may be rejected or parsed incorrectly.
  • Always restart the argocd-application-controller after editing argocd-cm; the controller reads this ConfigMap at startup.
  • If reconcilation is still slow:
    • Confirm the controller restart succeeded (kubectl -n argocd get deployment argocd-application-controller).
    • Inspect controller logs for errors or warnings:
    • Check for any cluster-level rate limiting or heavy controller load that could delay reconciliation.
  • For ArgoCD version-specific behavior or additional tuning options, refer to the official docs: Argo CD documentation - Configuration and Argo CD troubleshooting.
This walkthrough demonstrates how to tune ArgoCD’s pull/poll frequency by updating timeout.reconciliation in the argocd-cm ConfigMap and ensuring the application controller loads the new configuration.

Watch Video