mirror of
https://github.com/status-im/consul.git
synced 2025-01-18 17:52:17 +00:00
ed294fc49c
This is instead of the current behavior where we feed the config entries in using the config_entries.bootstrap configuration which oddly races against other setup code in some circumstances. I converted ALL tests to explicitly create config entries.
52 lines
750 B
Bash
52 lines
750 B
Bash
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
upsert_config_entry primary '
|
|
kind = "proxy-defaults"
|
|
name = "global"
|
|
config {
|
|
protocol = "tcp"
|
|
}
|
|
'
|
|
|
|
upsert_config_entry primary '
|
|
kind = "ingress-gateway"
|
|
name = "ingress-gateway"
|
|
listeners = [
|
|
{
|
|
protocol = "tcp"
|
|
port = 10000
|
|
services = [
|
|
{
|
|
name = "s2"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
'
|
|
|
|
upsert_config_entry primary '
|
|
kind = "service-resolver"
|
|
name = "s2"
|
|
failover = {
|
|
"*" = {
|
|
targets = [{ peer = "primary-to-alpha" }]
|
|
}
|
|
}
|
|
'
|
|
|
|
upsert_config_entry primary '
|
|
kind = "service-resolver"
|
|
name = "virtual-s2"
|
|
redirect = {
|
|
service = "s2"
|
|
peer = "primary-to-alpha"
|
|
}
|
|
'
|
|
|
|
register_services primary
|
|
|
|
gen_envoy_bootstrap ingress-gateway 20000 primary true
|
|
gen_envoy_bootstrap s2 19001 primary
|