You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> :construction: this is only available from next version, currently available in dev build
143
+
138
144
Sets the ConfigMap object that defines pattern files to be used in HAProxy configuration.
139
145
Controller will create corresponding files and update them when ConfigMap is updated.
140
146
Pattern files are particularly useful for [HAProxy ACLs](https://cbonte.github.io/haproxy-dconv/2.3/configuration.html#7.1) where we can load patterns from file.
@@ -217,6 +223,69 @@ args:
217
223
218
224
***
219
225
226
+
### `--default-backend-port`
227
+
228
+
229
+
> :construction: this is only available from next version, currently available in dev build
230
+
231
+
if default-backend-service is not used with this you can set default port used for same purpose
232
+
233
+
Possible values:
234
+
235
+
- port that will be used for default service within controller pod
236
+
237
+
Example:
238
+
239
+
```yaml
240
+
args:
241
+
- --default-backend-port=6060
242
+
```
243
+
244
+
<p align='right'><a href='#haproxy-kubernetes-ingress-controller'>:arrow_up_small: back to top</a></p>
245
+
246
+
***
247
+
248
+
### `--pprof`
249
+
250
+
enable pprof endpoint, if default-backend-port is not used 6060 will be used
251
+
252
+
Possible values:
253
+
254
+
- this is boolean flag
255
+
256
+
Example:
257
+
258
+
```yaml
259
+
args:
260
+
- --pprof
261
+
```
262
+
263
+
<p align='right'><a href='#haproxy-kubernetes-ingress-controller'>:arrow_up_small: back to top</a></p>
264
+
265
+
***
266
+
267
+
### `--prometheus`
268
+
269
+
270
+
> :construction: this is only available from next version, currently available in dev build
271
+
272
+
enable prometheus endpoint, if default-backend-port is not used 6060 will be used
273
+
274
+
Possible values:
275
+
276
+
- this is boolean flag
277
+
278
+
Example:
279
+
280
+
```yaml
281
+
args:
282
+
- --prometheus
283
+
```
284
+
285
+
<p align='right'><a href='#haproxy-kubernetes-ingress-controller'>:arrow_up_small: back to top</a></p>
286
+
287
+
***
288
+
220
289
### `--default-ssl-certificate`
221
290
222
291
The name of a TLS Secret that contains the certificate to use for SSL/TLS traffic. This can be overridden with the <code>ssl-certificate</code> setting.
description: if default-backend-service is not used with this you can set default port used for same purpose
132
+
values:
133
+
- port that will be used for default service within controller pod
134
+
version_min: "1.8"
135
+
example: |-
136
+
args:
137
+
- --default-backend-port=6060
138
+
- argument: --pprof
139
+
description: enable pprof endpoint, if default-backend-port is not used 6060 will be used
140
+
values:
141
+
- this is boolean flag
142
+
version_min: "1.4"
143
+
example: |-
144
+
args:
145
+
- --pprof
146
+
- argument: --prometheus
147
+
description: enable prometheus endpoint, if default-backend-port is not used 6060 will be used
148
+
values:
149
+
- this is boolean flag
150
+
version_min: "1.8"
151
+
example: |-
152
+
args:
153
+
- --prometheus
130
154
- argument: --default-ssl-certificate
131
155
description: The name of a TLS Secret that contains the certificate to use for SSL/TLS traffic. This can be overridden with the <code>ssl-certificate</code> setting.
0 commit comments