adds custom args
This commit is contained in:
parent
aaeca8e124
commit
65afd69e94
2 changed files with 5 additions and 0 deletions
|
@ -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 }}
|
||||
|
|
|
@ -5,6 +5,7 @@ clusterInstall: true
|
|||
controller:
|
||||
name: argo-rollouts
|
||||
component: rollouts-controller
|
||||
args: []
|
||||
image:
|
||||
repository: argoproj/argo-rollouts
|
||||
tag: v0.8.0
|
||||
|
|
Loading…
Reference in a new issue