adds custom args

This commit is contained in:
Aaron Weisberg 2020-08-17 15:05:06 -07:00
parent aaeca8e124
commit 65afd69e94
2 changed files with 5 additions and 0 deletions

View file

@ -32,6 +32,10 @@ spec:
containers:
- command:
- "/bin/rollouts-controller"
args:
{{- range .Values.controller.args }}
- {{ . }}
{{- end }}
image: "{{ .Values.controller.image.repository }}:{{ .Values.controller.image.tag }}"
imagePullPolicy: {{ .Values.controller.image.pullPolicy }}
name: {{ .Values.controller.name }}

View file

@ -5,6 +5,7 @@ clusterInstall: true
controller:
name: argo-rollouts
component: rollouts-controller
args: []
image:
repository: argoproj/argo-rollouts
tag: v0.8.0