Skip to main content
Redhat Developers  Logo
  • Products

    Featured

    • Red Hat Enterprise Linux
      Red Hat Enterprise Linux Icon
    • Red Hat OpenShift AI
      Red Hat OpenShift AI
    • Red Hat Enterprise Linux AI
      Linux icon inside of a brain
    • Image mode for Red Hat Enterprise Linux
      RHEL image mode
    • Red Hat OpenShift
      Openshift icon
    • Red Hat Ansible Automation Platform
      Ansible icon
    • Red Hat Developer Hub
      Developer Hub
    • View All Red Hat Products
    • Linux

      • Red Hat Enterprise Linux
      • Image mode for Red Hat Enterprise Linux
      • Red Hat Universal Base Images (UBI)
    • Java runtimes & frameworks

      • JBoss Enterprise Application Platform
      • Red Hat build of OpenJDK
    • Kubernetes

      • Red Hat OpenShift
      • Microsoft Azure Red Hat OpenShift
      • Red Hat OpenShift Virtualization
      • Red Hat OpenShift Lightspeed
    • Integration & App Connectivity

      • Red Hat Build of Apache Camel
      • Red Hat Service Interconnect
      • Red Hat Connectivity Link
    • AI/ML

      • Red Hat OpenShift AI
      • Red Hat Enterprise Linux AI
    • Automation

      • Red Hat Ansible Automation Platform
      • Red Hat Ansible Lightspeed
    • Developer tools

      • Red Hat Trusted Software Supply Chain
      • Podman Desktop
      • Red Hat OpenShift Dev Spaces
    • Developer Sandbox

      Developer Sandbox
      Try Red Hat products and technologies without setup or configuration fees for 30 days with this shared Openshift and Kubernetes cluster.
    • Try at no cost
  • Technologies

    Featured

    • AI/ML
      AI/ML Icon
    • Linux
      Linux Icon
    • Kubernetes
      Cloud icon
    • Automation
      Automation Icon showing arrows moving in a circle around a gear
    • View All Technologies
    • Programming Languages & Frameworks

      • Java
      • Python
      • JavaScript
    • System Design & Architecture

      • Red Hat architecture and design patterns
      • Microservices
      • Event-Driven Architecture
      • Databases
    • Developer Productivity

      • Developer productivity
      • Developer Tools
      • GitOps
    • Secure Development & Architectures

      • Security
      • Secure coding
    • Platform Engineering

      • DevOps
      • DevSecOps
      • Ansible automation for applications and services
    • Automated Data Processing

      • AI/ML
      • Data Science
      • Apache Kafka on Kubernetes
      • View All Technologies
    • Start exploring in the Developer Sandbox for free

      sandbox graphic
      Try Red Hat's products and technologies without setup or configuration.
    • Try at no cost
  • Learn

    Featured

    • Kubernetes & Cloud Native
      Openshift icon
    • Linux
      Rhel icon
    • Automation
      Ansible cloud icon
    • Java
      Java icon
    • AI/ML
      AI/ML Icon
    • View All Learning Resources

    E-Books

    • GitOps Cookbook
    • Podman in Action
    • Kubernetes Operators
    • The Path to GitOps
    • View All E-books

    Cheat Sheets

    • Linux Commands
    • Bash Commands
    • Git
    • systemd Commands
    • View All Cheat Sheets

    Documentation

    • API Catalog
    • Product Documentation
    • Legacy Documentation
    • Red Hat Learning

      Learning image
      Boost your technical skills to expert-level with the help of interactive lessons offered by various Red Hat Learning programs.
    • Explore Red Hat Learning
  • Developer Sandbox

    Developer Sandbox

    • Access Red Hat’s products and technologies without setup or configuration, and start developing quicker than ever before with our new, no-cost sandbox environments.
    • Explore Developer Sandbox

    Featured Developer Sandbox activities

    • Get started with your Developer Sandbox
    • OpenShift virtualization and application modernization using the Developer Sandbox
    • Explore all Developer Sandbox activities

    Ready to start developing apps?

    • Try at no cost
  • Blog
  • Events
  • Videos

What’s new in Red Hat OpenShift GitOps 1.12

March 19, 2024
Gerald Nunn Harriet Lawrence

Share:

    GitOps has continued in its popularity and has become the standard way to manage Kubernetes cluster configuration and applications. Red Hat continues to see the widespread adoption of the GitOps methodology across our portfolio as customers look for ways to bring increased efficiency to their operations and development teams.

    Red Hat is pleased to announce that version 1.12 of OpenShift GitOps has been released, bringing with it some exciting new capabilities.

    New in version 1.12

    Argo CD Notifications is now Generally Available

    Argo CD Notifications are now Generally Available and supported in this release. Notifications are used to proactively notify users of changes in the application state, for example when an Application goes to a Degraded or Out-Of-Sync state. In previous releases, Notifications was configured through a configmap however in this release this is now done for triggers and templates with a NotificationsConfiguration custom resource as per the example below:

    apiVersion: argoproj.io/v1alpha1
    kind: NotificationsConfiguration
    metadata:
     name: default-notifications-configuration
    spec:
     triggers:
      trigger.on-sync-status-unknown: |
        - when: app.status.sync.status == 'Unknown'
          send: [my-custom-template]
     templates:
      template.my-custom-template: |
        message: |
          Application details: {{.context.argocdUrl}}/applications/{{.app.metadata.name}}.

    Important: Due to the change in configuration for Notifications, users should be aware that when upgrading to this release the existing Notifications ConfigMap argocd-notifications-cm will be removed. Please take a backup of this before upgrading.

    Argo CD CLI available as a Technology Preview

    The Argo CD Command Line Interface (CLI) is now available as a Technology Preview as it moves to becoming a productized component of OpenShift GitOps. The Argo CD CLI tool is available through RPMs in RHEL and to download via the OpenShift mirror registry.

    ApplicationSets in Any Namespace available as Technology Preview

    ApplicationSets in Any Namespace can now be configured in the OpenShift GitOps operator. This feature enables the deployment of ApplicationSets in namespaces other than the namespace where Argo CD is located. This is particularly useful when operating OpenShift GitOps for multiple tenants and platform teams wish to limit access to the namespace where Argo CD is running.

    This feature compliments the Applications in Any Namespace feature and both of these features remain in Technology Preview in this release.

    Wildcard Support for Applications in Any Namespace

    Prior to this release, operators would need to specify all source namespaces where Applications in Any Namespace would be used. Now you can specify namespaces in the sourceNamespaces field of the Argo CD Custom Resource using wildcards. 

    This change makes it easier for operators to support namespaces based on common patterns, for example instead of manually including namespaces team1-dev, team1-stage, team2-dev, team2-stage, etc an administrative user could simply specify team*. Specifying just the wildcard, *, will include all namespaces.

    Argo CD 2.10 Available

    With this version, Argo CD has been upgraded to 2.10 which brings a number of new features and benefits including:

    • ApplicationSet templates are now available with the new templatePatch field enabling more complex structures then the default string field
    • A new Server-Side Apply (SSA) diff strategy is now available to optionally enable with the existing diff strategy remaining the default. This feature is Beta in upstream Argo CD and thus is Technical Preview in this release of OpenShift GitOps.
    • A new sync hook is available,  PostDelete, which can be used to clean-up or finalize after all Application resources have been deleted.
    • Kustomize offers components as a way to build manifests with composition rather than inheritance (bases and overlays). In this new release you can now specify components to include directly in the Application Custom Resource.

    A blog on the changes in Argo CD 2.10 is available here and a detailed list of all changes can be found here in the release information.

    Last updated: March 21, 2024
    Disclaimer: Please note the content in this blog post has not been thoroughly reviewed by the Red Hat Developer editorial team. Any opinions expressed in this post are the author's own and do not necessarily reflect the policies or positions of Red Hat.

    Recent Posts

    • How Kafka improves agentic AI

    • How to use service mesh to improve AI model security

    • How to run AI models in cloud development environments

    • How Trilio secures OpenShift virtual machines and containers

    • How to implement observability with Node.js and Llama Stack

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Products

    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform

    Build

    • Developer Sandbox
    • Developer Tools
    • Interactive Tutorials
    • API Catalog

    Quicklinks

    • Learning Resources
    • E-books
    • Cheat Sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site Status Dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Report a website issue