open-consul/test/integration/connect/envoy/case-centralconf/setup.sh
R.B. Boyer 37771ad847
test: fix envoy integration tests to explicitly create config entries (#15269)
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.
2022-11-07 10:02:04 -06:00

30 lines
459 B
Bash

#!/bin/bash
set -eEuo pipefail
upsert_config_entry primary '
kind = "proxy-defaults"
name = "global"
config {
envoy_prometheus_bind_addr = "0.0.0.0:1234"
}
'
upsert_config_entry primary '
kind = "service-defaults"
name = "s1"
protocol = "http"
'
upsert_config_entry primary '
kind = "service-defaults"
name = "s2"
protocol = "http"
'
register_services primary
gen_envoy_bootstrap s1 19000 primary
gen_envoy_bootstrap s2 19001 primary