← back

📷 "Microsoft Type Cover 2 - IMG_4252" by Nicola since 1972 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.

ArgoCD 3.4: Five New Features That Simplify Everyday GitOps

24 August 2026 · 4 min · Martin Jochum #ArgoCD#GitOps#Kubernetes#DevOps#Platform Engineering

In May 2026, ArgoCD 3.4 was released—and with it, perhaps the most practically relevant version of the leading GitOps tool in a long time. While previous releases mainly improved the performance and scalability of ApplicationSets, version 3.4 specifically addresses the daily pain points of platform engineers: incident management, alert routing, and Helm flexibility. More than 64 percent of companies now use GitOps as their primary deployment mechanism, and ArgoCD remains the dominant tool in this area with over 17,800 GitHub stars.

Pause Reconciliation at the Cluster Level

Anyone who has ever fixed a production-critical incident with kubectl apply knows the problem: ArgoCD detects the manual change, classifies it as drift, and ruthlessly rolls it back in the next sync cycle. Previously, in such cases, you had to click through dozens of Applications individually and disable “Auto-Sync”—or resort to network filters.

ArgoCD 3.4 introduces an annotation that solves exactly this problem:

argocd.argoproj.io/application-cluster-ignore: "true"

If this annotation is set on the Secret of a target cluster, ArgoCD pauses reconciliation for that entire cluster. The controller no longer performs synchronization, cache warming, or cluster info updates—however, the cluster remains visible in the ArgoCD overview. After the surgical intervention, reconciliation can be reactivated just as easily by removing the annotation.

Helm Wildcard Globs for valueFiles

Teams that use Helm intensively often maintain long, brittle lists of values.yaml files in their Application manifests. If you wanted to include five different value files, you had to explicitly list all five.

ArgoCD 3.4 now supports wildcard glob patterns for valueFiles. This allows multiple value files to be loaded dynamically based on directory structures or naming conventions—a new configuration file in the directory is automatically considered without the Application manifest itself needing to be changed via pull request.

Microsoft Teams Workflows: Mandatory Migration

A breaking change that deserves attention: Microsoft has discontinued the legacy Office 365 Connectors as of March 31, 2026. All ArgoCD notification pipelines based on the old teams service have been operating into the void since then.

ArgoCD 3.4 replaces this service with native support for Microsoft Teams Workflows, which is built on Power Automate webhooks and modern Adaptive Cards. The new cards offer structured layouts with semantic colors (Good, Warning, Attention, Accent) and support both shared and private channels—both features that the old connector did not cover. The previous teams service is marked as deprecated; anyone who has not yet migrated should do so immediately.

User Interface: Annotation Filters and Operation Status

The more Applications an ArgoCD instance manages, the more confusing the web interface becomes. Version 3.4 brings three targeted improvements for the Application List:

  • Annotation-based filtering: In addition to labels, Applications can now also be filtered by metadata.annotations—a big win for environments that maintain operational metadata in annotations.
  • Operation status filter: A new filter shows at a glance which Applications are currently syncing, have completed, or are reporting an error—complementing the existing sync status and health status filters.
  • Clear All button: All active filters can be reset with a single click.

Reduced DNS Load Through Optimized gRPC Health Checks

A subtle but noticeable improvement in restrictive network environments: ArgoCD’s gRPC health checks in dual-stack IPv4/IPv6 environments led to a high number of DNS TXT queries (_grpc_config.<hostname>). Version 3.4 optimizes this behavior and noticeably reduces background load—an advantage for operation in environments with paid DNS resolution (such as AWS Route53) or restrictive DNS policies.

Conclusion

ArgoCD 3.4 is not a pure performance release, but a targeted collection of improvements for day-to-day operations. The pause reconciliation feature gives platform teams a much-needed tool for incident situations. Helm wildcard globs reduce boilerplate in Application definitions, and the UI filters make ArgoCD manageable even with thousands of Applications. The migration of Teams notifications is annoying, but unavoidable.

Anyone running ArgoCD in production should firmly plan the upgrade to 3.4—the version is available as General Availability from May 2026.

Sources

🌐 Machine-translated from the German original, editorially reviewed. 🤖 Written with AI assistance.