Parallelism null by default

Signed-off-by: David Seel <dseel@blackberry.com>
This commit is contained in:
David Seel 2020-11-17 10:22:50 -05:00
parent bd86dfd01f
commit 134d0e7fcc
3 changed files with 4 additions and 2 deletions

View file

@ -2,7 +2,7 @@ apiVersion: v1
appVersion: v2.11.7 appVersion: v2.11.7
description: A Helm chart for Argo Workflows description: A Helm chart for Argo Workflows
name: argo name: argo
version: 0.13.5 version: 0.13.6
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
home: https://github.com/argoproj/argo-helm home: https://github.com/argoproj/argo-helm
maintainers: maintainers:

View file

@ -16,7 +16,9 @@ data:
{{- end }} {{- end }}
{{- end }} {{- end }}
containerRuntimeExecutor: {{ .Values.controller.containerRuntimeExecutor }} containerRuntimeExecutor: {{ .Values.controller.containerRuntimeExecutor }}
{{- if .Values.controller.parallelism }}
parallelism: {{ .Values.controller.parallelism }} parallelism: {{ .Values.controller.parallelism }}
{{- end }}
{{- if or .Values.executor.resources .Values.executor.env .Values.executor.securityContext}} {{- if or .Values.executor.resources .Values.executor.env .Values.executor.securityContext}}
executor: executor:
{{- with .Values.executor.resources }} {{- with .Values.executor.resources }}

View file

@ -37,7 +37,7 @@ controller:
# Overrides .images.tag if defined. # Overrides .images.tag if defined.
tag: "" tag: ""
# parallelism dictates how many workflows can be running at the same time # parallelism dictates how many workflows can be running at the same time
parallelism: 10 parallelism:
# podAnnotations is an optional map of annotations to be applied to the controller Pods # podAnnotations is an optional map of annotations to be applied to the controller Pods
podAnnotations: {} podAnnotations: {}
# Optional labels to add to the controller pods # Optional labels to add to the controller pods