2020-08-27 21:34:08 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
2022-11-07 16:02:04 +00:00
|
|
|
upsert_config_entry primary '
|
|
|
|
kind = "service-defaults"
|
|
|
|
name = "s1"
|
|
|
|
protocol = "grpc"
|
|
|
|
'
|
|
|
|
|
|
|
|
upsert_config_entry primary '
|
|
|
|
kind = "ingress-gateway"
|
|
|
|
name = "ingress-gateway"
|
|
|
|
listeners = [
|
|
|
|
{
|
|
|
|
port = 9999
|
|
|
|
protocol = "grpc"
|
|
|
|
services = [
|
|
|
|
{
|
|
|
|
name = "s1"
|
|
|
|
hosts = ["localhost:9999"]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
'
|
2020-08-27 21:34:08 +00:00
|
|
|
|
2020-11-09 19:59:46 +00:00
|
|
|
register_services primary
|
|
|
|
|
2020-08-27 21:34:08 +00:00
|
|
|
gen_envoy_bootstrap ingress-gateway 20000 primary true
|
|
|
|
gen_envoy_bootstrap s1 19000
|
|
|
|
gen_envoy_bootstrap s2 19001
|