feat(argo-workflows): Add controller namespaceParallelism param to configmap (#908)
Signed-off-by: Karsten Siemer <karsten.siemer@sda.se> Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
This commit is contained in:
parent
91d2a56ca8
commit
2beca15feb
3 changed files with 7 additions and 2 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
name: argo-workflows
|
name: argo-workflows
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
type: application
|
type: application
|
||||||
version: 0.4.2
|
version: 0.5.0
|
||||||
appVersion: "v3.1.8"
|
appVersion: "v3.1.8"
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo-workflows/master/docs/assets/argo.png
|
icon: https://raw.githubusercontent.com/argoproj/argo-workflows/master/docs/assets/argo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
|
@ -15,4 +15,4 @@ maintainers:
|
||||||
- name: benjaminws
|
- name: benjaminws
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Changed]: Bump appVersion to 3.1.8"
|
- "[Added]: Add controller namespaceParallelism param to configmap"
|
||||||
|
|
|
@ -17,6 +17,9 @@ data:
|
||||||
{{- if .Values.controller.parallelism }}
|
{{- if .Values.controller.parallelism }}
|
||||||
parallelism: {{ .Values.controller.parallelism }}
|
parallelism: {{ .Values.controller.parallelism }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- with .Values.controller.namespaceParallelism }}
|
||||||
|
namespaceParallelism: {{ . }}
|
||||||
|
{{- 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 }}
|
||||||
|
|
|
@ -42,6 +42,8 @@ controller:
|
||||||
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:
|
parallelism:
|
||||||
|
# Limits the maximum number of incomplete workflows in a namespace
|
||||||
|
namespaceParallelism:
|
||||||
# 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
|
||||||
|
|
Loading…
Reference in a new issue