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: containers:
- command: - command:
- "/bin/rollouts-controller" - "/bin/rollouts-controller"
args:
{{- range .Values.controller.args }}
- {{ . }}
{{- end }}
image: "{{ .Values.controller.image.repository }}:{{ .Values.controller.image.tag }}" image: "{{ .Values.controller.image.repository }}:{{ .Values.controller.image.tag }}"
imagePullPolicy: {{ .Values.controller.image.pullPolicy }} imagePullPolicy: {{ .Values.controller.image.pullPolicy }}
name: {{ .Values.controller.name }} name: {{ .Values.controller.name }}

View file

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