Set default protocol to http in TLS integration test
This commit is contained in:
parent
a500262a77
commit
29afac01c8
|
@ -1,25 +1,34 @@
|
||||||
enable_central_service_config = true
|
enable_central_service_config = true
|
||||||
|
|
||||||
config_entries {
|
config_entries {
|
||||||
bootstrap {
|
bootstrap = [
|
||||||
kind = "ingress-gateway"
|
{
|
||||||
name = "ingress-gateway"
|
kind = "proxy-defaults"
|
||||||
|
name = "global"
|
||||||
tls {
|
config {
|
||||||
enabled = true
|
|
||||||
}
|
|
||||||
|
|
||||||
listeners = [
|
|
||||||
{
|
|
||||||
port = 9999
|
|
||||||
protocol = "http"
|
protocol = "http"
|
||||||
services = [
|
|
||||||
{
|
|
||||||
name = "s1"
|
|
||||||
hosts = ["test.example.com"]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
},
|
||||||
}
|
{
|
||||||
|
kind = "ingress-gateway"
|
||||||
|
name = "ingress-gateway"
|
||||||
|
|
||||||
|
tls {
|
||||||
|
enabled = true
|
||||||
|
}
|
||||||
|
|
||||||
|
listeners = [
|
||||||
|
{
|
||||||
|
port = 9999
|
||||||
|
protocol = "http"
|
||||||
|
services = [
|
||||||
|
{
|
||||||
|
name = "s1"
|
||||||
|
hosts = ["test.example.com"]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue