diff --git a/chart/templates/deployment.yaml b/chart/templates/deployment.yaml index 3ccc6b24..6bb2e251 100644 --- a/chart/templates/deployment.yaml +++ b/chart/templates/deployment.yaml @@ -74,6 +74,9 @@ spec: - --health-probe-bind-address=:8081 - --metrics-bind-address=127.0.0.1:8080 - --leader-elect + {{- with .Values.extraArgs}} + {{- toYaml . | nindent 12 }} + {{- end }} env: {{- range $key, $value := .Values.env }} - name: {{ $key }} diff --git a/chart/values.yaml b/chart/values.yaml index e6e8fbfd..72792c88 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -99,3 +99,6 @@ affinity: crd: enabled: true keep: true + +extraArgs: {} + #- -zap-devel=false