feat: Add parallelism to argo-helm chart

Signed-off-by: David Seel <dseel@blackberry.com>
This commit is contained in:
David Seel 2020-10-27 13:50:29 -04:00
parent e4d67ae6e9
commit bd86dfd01f
2 changed files with 3 additions and 0 deletions

View file

@ -16,6 +16,7 @@ data:
{{- end }} {{- end }}
{{- end }} {{- end }}
containerRuntimeExecutor: {{ .Values.controller.containerRuntimeExecutor }} containerRuntimeExecutor: {{ .Values.controller.containerRuntimeExecutor }}
parallelism: {{ .Values.controller.parallelism }}
{{- 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

@ -36,6 +36,8 @@ controller:
image: image:
# 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: 10
# 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