How to validate EnvoyFilter has been applied successfully in the production

Newbie here. Sorry if this is a simple question.
We added HTTP2 workflow control in our clusters according to the following article. Is there any way to validate this setting has been applied successfully in the production? Can we see this setting via config_dump or some kubectl commands?


apiVersion: networking.istio.io/v1alpha3
kind: EnvoyFilter
metadata:
name: h2-control
spec:
configPatches:
- applyTo: CLUSTER
patch:
operation: MERGE
value:
http2_protocol_options:
initial_stream_window_size: 65536
initial_connection_window_size: 65536
- applyTo: NETWORK_FILTER
match:
listener:
filterChain:
filter:
name: “envoy.http_connection_manager”
patch:
operation: MERGE
value:
typed_config:
“@type”: “type.googleapis.com/envoy.config.filter.network.http_connection_manager.v2.HttpConnectionManager”
http2_protocol_options:
initial_stream_window_size: 65536
initial_connection_window_size: 65536
1 Like