Skip to content

Commit

Permalink
enable config of additional executor
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikKahl committed Feb 24, 2022
1 parent d0535e1 commit 44fb851
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
4 changes: 4 additions & 0 deletions charts/testmachinery/charts/argo/templates/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ metadata:
data:
config: |
containerRuntimeExecutor: {{ .Values.argo.executor.containerRuntimeExecutor }}
{{- with .Values.argo.executor.containerRuntimeExecutors }}
containerRuntimeExecutors:
{{- toYaml . | nindent 6 }}
{{- end }}
executor:
resources:
requests:
Expand Down
5 changes: 5 additions & 0 deletions charts/testmachinery/charts/argo/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ argo:
name: workflow-controller
executor:
containerRuntimeExecutor: docker
containerRuntimeExecutors: []
# - name: emissary
# selector:
# matchLabels:
# workflows.argoproj.io/container-runtime-executor: emissary
resources: { }
# requests:
# cpu: 200m
Expand Down
6 changes: 6 additions & 0 deletions charts/testmachinery/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,12 @@ argo:
name: workflow-controller
executor:
containerRuntimeExecutor: docker
containerRuntimeExecutors: []
# - name: emissary
# selector:
# matchLabels:
# workflows.argoproj.io/container-runtime-executor: emissary

resources: {}
# requests:
# cpu: 200m
Expand Down

0 comments on commit 44fb851

Please sign in to comment.