File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -106,6 +106,7 @@ Parameter | Description | Default
106
106
` controller.extraEnvs` | extra environment variables for the haproxy-ingress-controller | `[]`
107
107
` controller.extraVolumes` | extra volumes for the haproxy-ingress-controller | `[]`
108
108
` controller.extraVolumeMounts` | extra volume mounts for the haproxy-ingress-controller | `[]`
109
+ ` controller.extraContainers` | extra containers that to the haproxy-ingress-controller | `[]`
109
110
` controller.initContainers` | extra containers that can initialize the haproxy-ingress-controller | `[]`
110
111
` controller.template` | custom template for haproxy-ingress-controller | `{}`
111
112
` controller.defaultBackendService` | backend service to use if defaultBackend.enabled==false | `""`
Original file line number Diff line number Diff line change @@ -184,6 +184,9 @@ spec:
184
184
resources :
185
185
{{- toYaml .Values.controller.metrics.resources | nindent 8 }}
186
186
{{- end }}
187
+ {{- if .Values.controller.extraContainers }}
188
+ {{- toYaml .Values.controller.extraContainers | nindent 4 }}
189
+ {{- end }}
187
190
{{- if .Values.controller.imagePullSecrets }}
188
191
imagePullSecrets :
189
192
{{- toYaml .Values.controller.imagePullSecrets | nindent 4 }}
Original file line number Diff line number Diff line change @@ -46,6 +46,9 @@ controller:
46
46
extraVolumes : []
47
47
extraVolumeMounts : []
48
48
49
+ # # Additional containers to the pod.
50
+ extraContainers : []
51
+
49
52
# # Additional containers that can initialize the pod.
50
53
initContainers : []
51
54
You can’t perform that action at this time.
0 commit comments