Skip to content

Commit

Permalink
Replace deprecated filters with right values (istio#9860)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
harishb93 authored Jun 1, 2021
1 parent 43818c3 commit e16b564
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions content/en/docs/tasks/policy-enforcement/rate-limit/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit e16b564

Please sign in to comment.