Skip to content

Commit

Permalink
add keepalive settings to all envoy configs (#6033)
Browse files Browse the repository at this point in the history
  • Loading branch information
sakoush authored Nov 7, 2024
1 parent 7fc3402 commit a954969
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
7 changes: 6 additions & 1 deletion scheduler/config/envoy-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ static_resources:
socket_address:
address: scheduler
port_value: 9002
http2_protocol_options: {}
http2_protocol_options: {
connection_keepalive: {
interval: 60s,
timeout: 2s,
}
}
name: xds_cluster
- connect_timeout: 0.250s
type: LOGICAL_DNS
Expand Down
7 changes: 6 additions & 1 deletion scheduler/config/envoy-local.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ static_resources:
socket_address:
address: 0.0.0.0
port_value: 9002
http2_protocol_options: {}
http2_protocol_options: {
connection_keepalive: {
interval: 60s,
timeout: 2s,
}
}
name: xds_cluster
- connect_timeout: 0.250s
type: LOGICAL_DNS
Expand Down
7 changes: 6 additions & 1 deletion scheduler/config/envoy-tls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ static_resources:
socket_address:
address: seldon-scheduler
port_value: 9002
http2_protocol_options: {}
http2_protocol_options: {
connection_keepalive: {
interval: 60s,
timeout: 2s,
}
}
name: xds_cluster
transport_socket:
name: "envoy.transport_sockets.tls"
Expand Down

0 comments on commit a954969

Please sign in to comment.