feat: Enable specifying environment for Argo workflow executor. (#349)
This commit is contained in:
parent
2ad0ce8f3e
commit
859d769c12
3 changed files with 10 additions and 4 deletions
|
|
@ -16,10 +16,14 @@ data:
|
|||
{{- end }}
|
||||
{{- end }}
|
||||
containerRuntimeExecutor: {{ .Values.controller.containerRuntimeExecutor }}
|
||||
{{- with .Values.executor.resources }}
|
||||
{{- if or .Values.executor.resources .Values.executor.env }}
|
||||
executor:
|
||||
resources:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- with .Values.executor.resources }}
|
||||
resources: {{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- with .Values.executor.env }}
|
||||
env: {{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
artifactRepository:
|
||||
{{- if or .Values.minio.install .Values.useDefaultArtifactRepo }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue