fix(argo): add extraArgs to controller deployment (#613)
Co-authored-by: Alex Collins <alexec@users.noreply.github.com>
This commit is contained in:
parent
95c1ce0b75
commit
d27683f40c
3 changed files with 6 additions and 1 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: v2.12.5
|
appVersion: v2.12.5
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
name: argo
|
name: argo
|
||||||
version: 0.16.7
|
version: 0.16.8
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
maintainers:
|
maintainers:
|
||||||
|
|
|
@ -55,6 +55,9 @@ spec:
|
||||||
- "--pod-workers"
|
- "--pod-workers"
|
||||||
- {{ . | quote }}
|
- {{ . | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.controller.extraArgs }}
|
||||||
|
{{- toYaml .Values.controller.extraArgs | nindent 10 }}
|
||||||
|
{{- end }}
|
||||||
env:
|
env:
|
||||||
- name: ARGO_NAMESPACE
|
- name: ARGO_NAMESPACE
|
||||||
valueFrom:
|
valueFrom:
|
||||||
|
|
|
@ -118,6 +118,8 @@ controller:
|
||||||
# The list of environment variable definitions to be added to the controller
|
# The list of environment variable definitions to be added to the controller
|
||||||
# manages container verbatim.
|
# manages container verbatim.
|
||||||
extraEnv: []
|
extraEnv: []
|
||||||
|
# Extra arguments to be added to the controller
|
||||||
|
extraArgs: []
|
||||||
replicas: 1
|
replicas: 1
|
||||||
pdb:
|
pdb:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
Loading…
Reference in a new issue