diff --git a/charts/gitops-runtime/tests/values/global-constraints-values.yaml b/charts/gitops-runtime/tests/values/global-constraints-values.yaml index 573c2e46..10762b78 100644 --- a/charts/gitops-runtime/tests/values/global-constraints-values.yaml +++ b/charts/gitops-runtime/tests/values/global-constraints-values.yaml @@ -7,3 +7,6 @@ global: operator: Equal value: some-value effect: NoSchedule + +argo-rollouts: + enabled: true diff --git a/charts/gitops-runtime/tests/values/subcharts-constraints-values.yaml b/charts/gitops-runtime/tests/values/subcharts-constraints-values.yaml index 766d781c..66a438c4 100644 --- a/charts/gitops-runtime/tests/values/subcharts-constraints-values.yaml +++ b/charts/gitops-runtime/tests/values/subcharts-constraints-values.yaml @@ -69,6 +69,7 @@ argo-events: tolerations: *tolerations argo-rollouts: + enabled: true controller: nodeSelector: *nodeSelector tolerations: *tolerations diff --git a/charts/gitops-runtime/values.yaml b/charts/gitops-runtime/values.yaml index 9cedc576..bb43626d 100644 --- a/charts/gitops-runtime/values.yaml +++ b/charts/gitops-runtime/values.yaml @@ -317,6 +317,9 @@ argo-events: argo-workflows: fullnameOverride: argo enabled: true + # -- Restrict Argo Workflows to operate only in a single namespace (the namespace of the Helm release). + # This ensures it does not interfere with any other instances of Argo Workflows installed on your cluster. + singleNamespace: true server: # -- auth-mode needs to be set to client to be able to see workflow logs from Codefresh UI authModes: @@ -344,8 +347,10 @@ codefreshWorkflowLogStoreCM: #----------------------------------------------------------------------------------------------------------------------- # Argo rollouts #----------------------------------------------------------------------------------------------------------------------- +# -- Argo Rollouts is deprecated and disabled by default. It will be completely removed in February 2026. +# If you require Argo Rollouts, you can manually override this value to true in your Helm values files. argo-rollouts: - enabled: true + enabled: false fullnameOverride: argo-rollouts controller: replicas: 1