2022-08-30 15:46:34 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
2022-11-07 16:02:04 +00:00
|
|
|
upsert_config_entry alpha '
|
|
|
|
kind = "proxy-defaults"
|
|
|
|
name = "global"
|
|
|
|
config {
|
|
|
|
protocol = "tcp"
|
|
|
|
}
|
|
|
|
'
|
|
|
|
upsert_config_entry alpha '
|
|
|
|
kind = "exported-services"
|
|
|
|
name = "default"
|
|
|
|
services = [
|
|
|
|
{
|
|
|
|
name = "s2"
|
|
|
|
consumers = [
|
|
|
|
{
|
|
|
|
peer = "alpha-to-primary"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
'
|
|
|
|
|
2022-08-30 15:46:34 +00:00
|
|
|
register_services alpha
|
|
|
|
|
|
|
|
gen_envoy_bootstrap s2 19002 alpha
|
|
|
|
gen_envoy_bootstrap mesh-gateway 19003 alpha true
|