mirror of https://github.com/status-im/consul.git
fix formatting issue in envoy bootstrapping. (#20036)
This commit is contained in:
parent
ab60fec15a
commit
0f3cc3d631
|
@ -655,12 +655,12 @@ func (c *BootstrapConfig) generateListenerConfig(args *BootstrapTplArgs, bindAdd
|
||||||
"type": "STATIC",
|
"type": "STATIC",
|
||||||
"typed_extension_protocol_options": {
|
"typed_extension_protocol_options": {
|
||||||
"envoy.extensions.upstreams.http.v3.HttpProtocolOptions": {
|
"envoy.extensions.upstreams.http.v3.HttpProtocolOptions": {
|
||||||
"@type": "type.googleapis.com/envoy.extensions.upstreams.http.v3.HttpProtocolOptions",
|
"@type": "type.googleapis.com/envoy.extensions.upstreams.http.v3.HttpProtocolOptions",
|
||||||
"explicit_http_config": {
|
"explicit_http_config": {
|
||||||
"http_protocol_options": {}
|
"http_protocol_options": {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"loadAssignment": {
|
"loadAssignment": {
|
||||||
"clusterName": "` + clusterName + `",
|
"clusterName": "` + clusterName + `",
|
||||||
"endpoints": [
|
"endpoints": [
|
||||||
|
|
|
@ -23,12 +23,12 @@ const (
|
||||||
"type": "STATIC",
|
"type": "STATIC",
|
||||||
"typed_extension_protocol_options": {
|
"typed_extension_protocol_options": {
|
||||||
"envoy.extensions.upstreams.http.v3.HttpProtocolOptions": {
|
"envoy.extensions.upstreams.http.v3.HttpProtocolOptions": {
|
||||||
"@type": "type.googleapis.com/envoy.extensions.upstreams.http.v3.HttpProtocolOptions",
|
"@type": "type.googleapis.com/envoy.extensions.upstreams.http.v3.HttpProtocolOptions",
|
||||||
"explicit_http_config": {
|
"explicit_http_config": {
|
||||||
"http_protocol_options": {}
|
"http_protocol_options": {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"loadAssignment": {
|
"loadAssignment": {
|
||||||
"clusterName": "self_admin",
|
"clusterName": "self_admin",
|
||||||
"endpoints": [
|
"endpoints": [
|
||||||
|
@ -55,13 +55,13 @@ const (
|
||||||
"connect_timeout": "5s",
|
"connect_timeout": "5s",
|
||||||
"type": "STATIC",
|
"type": "STATIC",
|
||||||
"typed_extension_protocol_options": {
|
"typed_extension_protocol_options": {
|
||||||
"envoy.extensions.upstreams.http.v3.HttpProtocolOptions": {
|
"envoy.extensions.upstreams.http.v3.HttpProtocolOptions": {
|
||||||
"@type": "type.googleapis.com/envoy.extensions.upstreams.http.v3.HttpProtocolOptions",
|
"@type": "type.googleapis.com/envoy.extensions.upstreams.http.v3.HttpProtocolOptions",
|
||||||
"explicit_http_config": {
|
"explicit_http_config": {
|
||||||
"http_protocol_options": {}
|
"http_protocol_options": {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"loadAssignment": {
|
"loadAssignment": {
|
||||||
"clusterName": "self_admin",
|
"clusterName": "self_admin",
|
||||||
"endpoints": [
|
"endpoints": [
|
||||||
|
|
|
@ -50,9 +50,9 @@ func TestEnvoy(t *testing.T) {
|
||||||
caseDir := "CASE_DIR=" + tc
|
caseDir := "CASE_DIR=" + tc
|
||||||
|
|
||||||
t.Cleanup(func() {
|
t.Cleanup(func() {
|
||||||
//if t.Failed() {
|
if t.Failed() {
|
||||||
runCmd(t, "capture_logs", caseDir)
|
runCmd(t, "capture_logs", caseDir)
|
||||||
//}
|
}
|
||||||
|
|
||||||
runCmd(t, "test_teardown", caseDir)
|
runCmd(t, "test_teardown", caseDir)
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue