Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions helm/robusta/templates/runner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,8 @@ spec:
- name: IS_OPENSHIFT
value: "True"
{{- end }}
{{- if .Values.argoRollouts }}
- name: ARGO_ROLLOUTS
value: "True"
{{- end }}
value: {{ ternary "True" "False" .Values.argoRollouts | quote }}
{{- if .Values.runner.customCRD }}
- name: CUSTOM_CRD
value: {{ .Values.runner.customCRD | toJson | squote }}
Expand Down
2 changes: 1 addition & 1 deletion helm/robusta/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ enablePrometheusStack: false
enabledManagedConfiguration: false
enableServiceMonitors: true
monitorHelmReleases: true
argoRollouts: false
argoRollouts: true



Expand Down
2 changes: 1 addition & 1 deletion src/robusta/core/model/env_vars.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def load_bool(env_var, default: bool):

RUN_AS_SUBPROCESS = load_bool("RUN_AS_SUBPROCESS", True)

ARGO_ROLLOUTS = load_bool("ARGO_ROLLOUTS", False)
ARGO_ROLLOUTS = load_bool("ARGO_ROLLOUTS", True)
# lowered case k8s kinds in a json array string. "[\"configmap\", \"secret\"]"
RESOURCE_YAML_BLOCK_LIST = json.loads(os.environ.get("RESOURCE_YAML_BLOCK_LIST", "[]"))

Expand Down
Loading