Skip to content

Commit dec884c

Browse files
authored
Add extra args helm (#248)
* feat: add extraArgs for manager
1 parent a9042ea commit dec884c

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

chart/templates/deployment.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@ spec:
7474
- --health-probe-bind-address=:8081
7575
- --metrics-bind-address=127.0.0.1:8080
7676
- --leader-elect
77+
{{- with .Values.extraArgs}}
78+
{{- toYaml . | nindent 12 }}
79+
{{- end }}
7780
env:
7881
{{- range $key, $value := .Values.env }}
7982
- name: {{ $key }}

chart/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,3 +99,6 @@ affinity:
9999
crd:
100100
enabled: true
101101
keep: true
102+
103+
extraArgs: {}
104+
#- -zap-devel=false

0 commit comments

Comments
 (0)