mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
2460ac99c9
* Simple API Gateway e2e test for tcp routes * Drop DNSSans since we don't front the Gateway with a leaf cert * WIP listener tests for api-gateway * Return early if no routes * Add back in leaf cert to testing * Fix merge conflicts * Re-add kind to setup * Fix iteration over listener upstreams * New tcp listener test * Add tests for API Gateway with TCP and HTTP routes * Move zero-route check back * Drop generateIngressDNSSANs * Check for chains not routes --------- Co-authored-by: Andrew Stucki <andrew.stucki@hashicorp.com>
78 lines
1.1 KiB
Bash
78 lines
1.1 KiB
Bash
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
upsert_config_entry primary '
|
|
kind = "api-gateway"
|
|
name = "api-gateway"
|
|
listeners = [
|
|
{
|
|
name = "listener-one"
|
|
port = 9999
|
|
protocol = "tcp"
|
|
},
|
|
{
|
|
name = "listener-two"
|
|
port = 9998
|
|
protocol = "tcp"
|
|
}
|
|
]
|
|
'
|
|
|
|
upsert_config_entry primary '
|
|
kind = "tcp-route"
|
|
name = "api-gateway-route-one"
|
|
services = [
|
|
{
|
|
name = "s1"
|
|
}
|
|
]
|
|
parents = [
|
|
{
|
|
name = "api-gateway"
|
|
sectionName = "listener-one"
|
|
}
|
|
]
|
|
'
|
|
|
|
upsert_config_entry primary '
|
|
kind = "tcp-route"
|
|
name = "api-gateway-route-two"
|
|
services = [
|
|
{
|
|
name = "s2"
|
|
}
|
|
]
|
|
parents = [
|
|
{
|
|
name = "api-gateway"
|
|
sectionName = "listener-two"
|
|
kind = "api-gateway"
|
|
}
|
|
]
|
|
'
|
|
|
|
upsert_config_entry primary '
|
|
kind = "service-intentions"
|
|
name = "s1"
|
|
sources {
|
|
name = "api-gateway"
|
|
action = "allow"
|
|
}
|
|
'
|
|
|
|
upsert_config_entry primary '
|
|
kind = "service-intentions"
|
|
name = "s2"
|
|
sources {
|
|
name = "api-gateway"
|
|
action = "deny"
|
|
}
|
|
'
|
|
|
|
register_services primary
|
|
|
|
gen_envoy_bootstrap api-gateway 20000 primary true
|
|
gen_envoy_bootstrap s1 19000
|
|
gen_envoy_bootstrap s2 19001
|