diff --git a/charts/argo-rollouts/templates/argo-rollouts-deployment.yaml b/charts/argo-rollouts/templates/argo-rollouts-deployment.yaml index 1fb1a2d2..57ed7494 100644 --- a/charts/argo-rollouts/templates/argo-rollouts-deployment.yaml +++ b/charts/argo-rollouts/templates/argo-rollouts-deployment.yaml @@ -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 }} diff --git a/charts/argo-rollouts/values.yaml b/charts/argo-rollouts/values.yaml index 18b7dff4..63948ca2 100644 --- a/charts/argo-rollouts/values.yaml +++ b/charts/argo-rollouts/values.yaml @@ -5,6 +5,7 @@ clusterInstall: true controller: name: argo-rollouts component: rollouts-controller + args: [] image: repository: argoproj/argo-rollouts tag: v0.8.0