File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change @@ -116,3 +116,47 @@ spec:
116
116
logging:
117
117
access: null
118
118
----
119
+
120
+ Allow the Ingress Controller to modify the HAProxy log length when using a sidecar.
121
+
122
+ * Use `spec.logging.access.destination.syslog.maxLength` if you are using `spec.logging.access.destination.type: Syslog` .
123
+
124
+ +
125
+ [source,yaml]
126
+ ----
127
+ apiVersion: operator.openshift.io/v1
128
+ kind: IngressController
129
+ metadata:
130
+ name: default
131
+ namespace: openshift-ingress-operator
132
+ spec:
133
+ replicas: 2
134
+ logging:
135
+ access:
136
+ destination:
137
+ type: Syslog
138
+ syslog:
139
+ address: 1.2.3.4
140
+ maxLength: 4096
141
+ port: 10514
142
+ ----
143
+ * Use `spec.logging.access.destination.container.maxLength` if you are using `spec.logging.access.destination.type: Container` .
144
+
145
+ +
146
+ [source,yaml]
147
+ ----
148
+ apiVersion: operator.openshift.io/v1
149
+ kind: IngressController
150
+ metadata:
151
+ name: default
152
+ namespace: openshift-ingress-operator
153
+ spec:
154
+ replicas: 2
155
+ logging:
156
+ access:
157
+ destination:
158
+ type: Container
159
+ container:
160
+ maxLength: 8192
161
+ ----
162
+
You can’t perform that action at this time.
0 commit comments