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
If set, disables updating the status field of Ingress resources by the controller.
892
+
By default, the controller will update the status field with the LoadBalancer address.
893
+
This flag is useful if you want to prevent the controller from modifying Ingress status, for example when using another controller or external process to manage status updates.
894
+
895
+
Possible values:
896
+
897
+
- Boolean flag; just declare the flag to disable status updates.
898
+
899
+
Example:
900
+
901
+
```yaml
902
+
--disable-ingress-status-update
903
+
```
904
+
905
+
<p align='right'><a href='#haproxy-kubernetes-ingress-controller'>:arrow_up_small: back to top</a></p>
If set, disables updating the status field of Ingress resources by the controller.
426
+
By default, the controller will update the status field with the LoadBalancer address.
427
+
This flag is useful if you want to prevent the controller from modifying Ingress status, for example when using another controller or external process to manage status updates.
428
+
values:
429
+
- Boolean flag; just declare the flag to disable status updates.
Copy file name to clipboardExpand all lines: pkg/utils/flags.go
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -122,4 +122,5 @@ type OSArgs struct {
122
122
DisableDelayedWritingOnlyIfReloadbool`long:"disable-writing-only-if-reload" description:"disable the delayed writing of files to disk only in case of haproxy reload (=write files to disk even if no reload)"`
123
123
CRDInputFilestring`long:"input-file" description:"The file path of a CRD manifest to convert"`
124
124
CRDOutputFilestring`long:"output-file" description:"The file path of the converted (to the most recent version) CRD manifest"`
125
+
DisableIngressStatusUpdatebool`long:"disable-ingress-status-update" description:"If true, disables updating the status field of Ingress resources"`
0 commit comments