feat: Enable specifying environment for Argo workflow executor.
This commit is contained in:
parent
2ad0ce8f3e
commit
e5b1b74cc4
2 changed files with 9 additions and 3 deletions
|
@ -16,10 +16,14 @@ data:
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
containerRuntimeExecutor: {{ .Values.controller.containerRuntimeExecutor }}
|
containerRuntimeExecutor: {{ .Values.controller.containerRuntimeExecutor }}
|
||||||
{{- with .Values.executor.resources }}
|
{{- if or .Values.executor.resources .Values.executor.env }}
|
||||||
executor:
|
executor:
|
||||||
resources:
|
{{- with .Values.executor.resources }}
|
||||||
{{- toYaml . | nindent 8 }}
|
resources: {{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.executor.env }}
|
||||||
|
env: {{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
artifactRepository:
|
artifactRepository:
|
||||||
{{- if or .Values.minio.install .Values.useDefaultArtifactRepo }}
|
{{- if or .Values.minio.install .Values.useDefaultArtifactRepo }}
|
||||||
|
|
|
@ -111,6 +111,8 @@ executor:
|
||||||
# Overrides .images.tag if defined.
|
# Overrides .images.tag if defined.
|
||||||
tag: ""
|
tag: ""
|
||||||
resources: {}
|
resources: {}
|
||||||
|
# Adds environment variables for the executor.
|
||||||
|
env: {}
|
||||||
|
|
||||||
server:
|
server:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
Loading…
Reference in a new issue