feat(argo-workflows): Add controller containerRuntimeExecutors param to configmap (#924)
* feat(argo-workflows): Add controller containerRuntimeExecutors param to configmap Signed-off-by: Elliot Maincourt <e.maincourt@gmail.com> * fix(chart): changes are not cumulative Signed-off-by: Elliot Maincourt <e.maincourt@gmail.com>
This commit is contained in:
parent
372fc24e5e
commit
44acc3cde7
3 changed files with 11 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.5.0
|
version: 0.5.1
|
||||||
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: |
|
||||||
- "[Added]: Add controller namespaceParallelism param to configmap"
|
- "[Added]: Add controller containerRuntimeExecutors param to configmap"
|
||||||
|
|
|
@ -14,6 +14,10 @@ data:
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
containerRuntimeExecutor: {{ .Values.controller.containerRuntimeExecutor }}
|
containerRuntimeExecutor: {{ .Values.controller.containerRuntimeExecutor }}
|
||||||
|
{{- with .Values.controller.containerRuntimeExecutors }}
|
||||||
|
containerRuntimeExecutors:
|
||||||
|
{{- toYaml . | nindent 6 }}
|
||||||
|
{{- end }}
|
||||||
{{- if .Values.controller.parallelism }}
|
{{- if .Values.controller.parallelism }}
|
||||||
parallelism: {{ .Values.controller.parallelism }}
|
parallelism: {{ .Values.controller.parallelism }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -113,6 +113,11 @@ controller:
|
||||||
workflowNamespaces:
|
workflowNamespaces:
|
||||||
- default
|
- default
|
||||||
containerRuntimeExecutor: docker
|
containerRuntimeExecutor: docker
|
||||||
|
# containerRuntimeExecutors:
|
||||||
|
# - name: emissary
|
||||||
|
# selector:
|
||||||
|
# matchLabels:
|
||||||
|
# workflows.argoproj.io/container-runtime-executor: emissary
|
||||||
instanceID:
|
instanceID:
|
||||||
# `instanceID.enabled` configures the controller to filter workflow submissions
|
# `instanceID.enabled` configures the controller to filter workflow submissions
|
||||||
# to only those which have a matching instanceID attribute.
|
# to only those which have a matching instanceID attribute.
|
||||||
|
|
Loading…
Reference in a new issue