open-consul/test/integration/connect/envoy/case-ingress-gateway-simple/config_entries.hcl

25 lines
443 B
HCL
Raw Normal View History

config_entries {
bootstrap {
kind = "ingress-gateway"
name = "ingress-gateway"
2022-10-03 20:55:05 +00:00
Defaults {
MaxConnections = 10
MaxPendingRequests = 20
MaxConcurrentRequests = 30
}
listeners = [
{
port = 9999
protocol = "tcp"
services = [
{
name = "s1"
2022-10-03 20:55:05 +00:00
MaxConnections = 100
MaxPendingRequests = 200
}
]
}
]
}
}