mirror of https://github.com/istio/istio.io.git
Replace deprecated filters with right values (#9860)
On deploying the existing provided configuration, the system throws a warning message stating the filters "envoy.http_connection_manager" and "envoy.router" is deprecated. Updated the filters with the right values to avoid showing warning messages while using the config.
This commit is contained in:
parent
43818c3d4b
commit
e16b56466f
|
@ -92,9 +92,9 @@ backend, is used below.
|
|||
listener:
|
||||
filterChain:
|
||||
filter:
|
||||
name: "envoy.http_connection_manager"
|
||||
name: "envoy.filters.network.http_connection_manager"
|
||||
subFilter:
|
||||
name: "envoy.router"
|
||||
name: "envoy.filters.http.router"
|
||||
patch:
|
||||
operation: INSERT_BEFORE
|
||||
# Adds the Envoy Rate Limit Filter in HTTP filter chain.
|
||||
|
@ -199,7 +199,7 @@ spec:
|
|||
listener:
|
||||
filterChain:
|
||||
filter:
|
||||
name: "envoy.http_connection_manager"
|
||||
name: "envoy.filters.network.http_connection_manager"
|
||||
patch:
|
||||
operation: INSERT_BEFORE
|
||||
value:
|
||||
|
@ -254,7 +254,7 @@ spec:
|
|||
listener:
|
||||
filterChain:
|
||||
filter:
|
||||
name: "envoy.http_connection_manager"
|
||||
name: "envoy.filters.network.http_connection_manager"
|
||||
patch:
|
||||
operation: INSERT_BEFORE
|
||||
value:
|
||||
|
|
Loading…
Reference in New Issue