mirror of https://github.com/status-im/consul.git
[NET-5810] CE changes for multiple virtual hosts (#19246)
CE changes for multiple virtual hosts
This commit is contained in:
parent
a6c990c6fe
commit
b78465b491
|
@ -152,7 +152,11 @@ func (s *ResourceGenerator) makeAPIGatewayListeners(address string, cfgSnap *pro
|
|||
|
||||
routes := make([]*structs.HTTPRouteConfigEntry, 0, len(readyListener.routeReferences))
|
||||
for _, routeRef := range maps.Keys(readyListener.routeReferences) {
|
||||
route, _ := cfgSnap.APIGateway.HTTPRoutes.Get(routeRef)
|
||||
route, ok := cfgSnap.APIGateway.HTTPRoutes.Get(routeRef)
|
||||
if !ok {
|
||||
return nil, fmt.Errorf("missing route for routeRef %s:%s", routeRef.Kind, routeRef.Name)
|
||||
}
|
||||
|
||||
routes = append(routes, route)
|
||||
}
|
||||
consolidatedRoutes := discoverychain.ConsolidateHTTPRoutes(cfgSnap.APIGateway.GatewayConfig, &readyListener.listenerCfg, routes...)
|
||||
|
@ -297,11 +301,9 @@ func getReadyListeners(cfgSnap *proxycfg.ConfigSnapshot) map[string]readyListene
|
|||
continue
|
||||
}
|
||||
|
||||
routeKey := l.Name + routeRef.String()
|
||||
|
||||
for _, upstream := range routeUpstreamsForListener {
|
||||
// Insert or update readyListener for the listener to include this upstream
|
||||
r, ok := ready[routeKey]
|
||||
r, ok := ready[l.Name]
|
||||
if !ok {
|
||||
r = readyListener{
|
||||
listenerKey: listenerKey,
|
||||
|
@ -312,7 +314,7 @@ func getReadyListeners(cfgSnap *proxycfg.ConfigSnapshot) map[string]readyListene
|
|||
}
|
||||
r.routeReferences[routeRef] = struct{}{}
|
||||
r.upstreams = append(r.upstreams, upstream)
|
||||
ready[routeKey] = r
|
||||
ready[l.Name] = r
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,30 +1,6 @@
|
|||
{
|
||||
"nonce": "00000001",
|
||||
"resources": [
|
||||
{
|
||||
"@type": "type.googleapis.com/envoy.config.route.v3.RouteConfiguration",
|
||||
"name": "8080",
|
||||
"validateClusters": true,
|
||||
"virtualHosts": [
|
||||
{
|
||||
"domains": [
|
||||
"backend.example.com",
|
||||
"backend.example.com:8080"
|
||||
],
|
||||
"name": "api-gateway-http-5a84e719",
|
||||
"routes": [
|
||||
{
|
||||
"match": {
|
||||
"prefix": "/"
|
||||
},
|
||||
"route": {
|
||||
"cluster": "backend.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"@type": "type.googleapis.com/envoy.config.route.v3.RouteConfiguration",
|
||||
"name": "8080",
|
||||
|
@ -46,14 +22,24 @@
|
|||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"@type": "type.googleapis.com/envoy.config.route.v3.RouteConfiguration",
|
||||
"name": "8080",
|
||||
"validateClusters": true,
|
||||
"virtualHosts": [
|
||||
},
|
||||
{
|
||||
"domains": [
|
||||
"backend.example.com",
|
||||
"backend.example.com:8080"
|
||||
],
|
||||
"name": "api-gateway-http-5a84e719",
|
||||
"routes": [
|
||||
{
|
||||
"match": {
|
||||
"prefix": "/"
|
||||
},
|
||||
"route": {
|
||||
"cluster": "backend.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"domains": [
|
||||
"*.example.com",
|
||||
|
|
Loading…
Reference in New Issue