fix(argo): add extraArgs to controller deployment (#613)

Co-authored-by: Alex Collins <alexec@users.noreply.github.com>
pull/652/head
MichaelKo 2021-03-31 19:31:59 +02:00 committed by GitHub
parent 95c1ce0b75
commit d27683f40c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 1 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v2.12.5
description: A Helm chart for Argo Workflows
name: argo
version: 0.16.7
version: 0.16.8
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
home: https://github.com/argoproj/argo-helm
maintainers:

View File

@ -55,6 +55,9 @@ spec:
- "--pod-workers"
- {{ . | quote }}
{{- end }}
{{- if .Values.controller.extraArgs }}
{{- toYaml .Values.controller.extraArgs | nindent 10 }}
{{- end }}
env:
- name: ARGO_NAMESPACE
valueFrom:

View File

@ -118,6 +118,8 @@ controller:
# The list of environment variable definitions to be added to the controller
# manages container verbatim.
extraEnv: []
# Extra arguments to be added to the controller
extraArgs: []
replicas: 1
pdb:
enabled: false