@@ -76,10 +76,6 @@ config:
76
76
# ## https://docs.wallarm.com/admin-en/configure-parameters-en/#wallarm_unpack_response
77
77
# ##
78
78
unpackResponse : " on"
79
- # ## Global setting to turn Wallarm API Firewall component on or off
80
- # ## https://wallarm.github.io/api-firewall/
81
- # ##
82
- apiFirewallMode : " on"
83
79
# ## Post-analytics node endpoint configuration
84
80
# ##
85
81
upstream :
@@ -91,6 +87,32 @@ config:
91
87
# ## https://docs.wallarm.com/admin-en/configure-parameters-en/#wallarm_upstream_reconnect_interval
92
88
# ##
93
89
reconnectInterval : 15s
90
+ apiFirewall :
91
+ # ## Global setting to turn Wallarm API Firewall component on or off
92
+ # ## https://wallarm.github.io/api-firewall/
93
+ # ##
94
+ mode : " on"
95
+ # ## Per-connection buffer size (in bytes) for requests' reading. This also limits the maximum header size.
96
+ # ## Increase this buffer if your clients send multi-KB RequestURIs and/or multi-KB headers (for example, BIG cookies)
97
+ # ##
98
+ readBufferSize : 8192
99
+ # ## Per-connection buffer size (in bytes) for responses' writing.
100
+ # ##
101
+ writeBufferSize : 8192
102
+ # ## Maximum request body size (in bytes). The server rejects requests with bodies exceeding this limit.
103
+ # ##
104
+ maxRequestBodySize : 4194304
105
+ # ## Whether to disable keep-alive connections. The server will close all the incoming connections after sending
106
+ # # the first response to client if this option is set to 'true'
107
+ # ##
108
+ disableKeepalive : false
109
+ # ## Maximum number of concurrent client connections allowed per IP. '0' means unlimited
110
+ # ##
111
+ maxConnectionsPerIp : 0
112
+ # ## Maximum number of requests served per connection. The server closes connection after the last request.
113
+ # ## 'Connection: close' header is added to the last response. '0' means unlimited
114
+ # ##
115
+ maxRequestsPerConnection : 0
94
116
# ## Default Annotation prefix which is used in sidecar template to overwrite default values
95
117
annotationPrefix : sidecar.wallarm.io
96
118
# ## Default sidecar injection strategy. Parameters in this section can be overwritten individually
@@ -765,7 +787,7 @@ controller:
765
787
image :
766
788
registry : docker.io
767
789
image : wallarm/sidecar-controller
768
- tag : 1.3.11
790
+ tag : 1.4.0
769
791
pullPolicy : IfNotPresent
770
792
# -- Admission webhook configuration
771
793
# @default -- *See below for details*
0 commit comments