Skip to content

Z-Stream Automatic Updates

To restrict automatic updates to only z-stream patches and avoid breaking changes, use the "~" version range operator when setting the version for the desired package in Catalog source.

Example:

apiVersion: olm.operatorframework.io/v1alpha1
kind: ClusterExtension
metadata:
  name: argocd
spec:
  source:
    sourceType: Catalog
    catalog:
      packageName: argocd-operator
      version: “~2.3" # Automatically upgrade patch releases for v2.3
  install:
    namespace: argocd
    serviceAccount:
      name: argocd-installer

For more information on SemVer version ranges see version ranges