-
Notifications
You must be signed in to change notification settings - Fork 708
Closed
Labels
kind/bugSomething isn't workingSomething isn't working
Description
I would like to change the value of envoy.restart_features.use_eds_cache_for_ads to false using this EnvoyProxy CR:
apiVersion: gateway.envoyproxy.io/v1alpha1
kind: EnvoyProxy
metadata:
name: custom-proxy-config
namespace: envoy-gateway-system
spec:
bootstrap:
type: Merge
value: |
layered_runtime:
layers:
- name: global_config
staticLayer:
envoy.restart_features.use_eds_cache_for_ads: falseGot two global_config keys in the bootstrap configuration.
layeredRuntime:
layers:
- name: global_config
staticLayer:
envoy.restart_features.use_eds_cache_for_ads: true
re2.max_program_size.error_level: 4294967295
re2.max_program_size.warn_level: 1000
- name: global_config
staticLayer:
envoy.restart_features.use_eds_cache_for_ads: falseInstead, the expected result should be :
layeredRuntime:
layers:
- name: global_config
staticLayer:
envoy.restart_features.use_eds_cache_for_ads: false
re2.max_program_size.error_level: 4294967295
re2.max_program_size.warn_level: 1000Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
kind/bugSomething isn't workingSomething isn't working