Skip to content

Commit 1a2587f

Browse files
authored
ci: bump envoy version (#451)
1 parent 06f84d5 commit 1a2587f

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

compose.latency.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,14 @@ services:
102102
node9:
103103
condition: service_healthy
104104
envoy:
105-
image: envoyproxy/envoy:v1.23.1
105+
image: envoyproxy/envoy:v1.35.3
106106
restart: "${RESTART_POLICY:-always}"
107+
command:
108+
- envoy
109+
- -c
110+
- /etc/envoy/envoy.yaml
111+
- -l
112+
- warn
107113
ports:
108114
- "3000:10000"
109115
- "7000:10001"

test/proxy/envoy.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ static_resources:
2626
enable_hashtagging: true
2727
enable_redirection: true
2828
read_policy: PREFER_REPLICA
29+
dns_cache_config:
30+
name: redis
2931
prefix_routes:
3032
catch_all_route:
3133
cluster: redis
@@ -48,9 +50,9 @@ static_resources:
4850
endpoints:
4951
- lb_endpoints:
5052
- endpoint: { address: { socket_address: { address: node1, port_value: 6379 } } }
51-
layered_runtime:
52-
layers:
53-
- name: redis
54-
static_layer:
55-
overload:
56-
global_downstream_max_connections: 100
53+
overload_manager:
54+
resource_monitors:
55+
- name: envoy.resource_monitors.global_downstream_max_connections
56+
typed_config:
57+
"@type": type.googleapis.com/envoy.extensions.resource_monitors.downstream_connections.v3.DownstreamConnectionsConfig
58+
max_active_downstream_connections: 100

0 commit comments

Comments
 (0)