mirror of https://github.com/status-im/consul.git
xds: have mesh gateways forward peered SpiffeIDs using the XFCC header (#13625)
This commit is contained in:
parent
1a9c86ea8f
commit
de0f9ac519
|
@ -1544,6 +1544,8 @@ func (s *ResourceGenerator) makeMeshGatewayPeerFilterChain(
|
||||||
protocol: chain.Protocol,
|
protocol: chain.Protocol,
|
||||||
useRDS: useRDS,
|
useRDS: useRDS,
|
||||||
statPrefix: "mesh_gateway_local_peered.",
|
statPrefix: "mesh_gateway_local_peered.",
|
||||||
|
forwardClientDetails: true,
|
||||||
|
forwardClientPolicy: envoy_http_v3.HttpConnectionManager_SANITIZE_SET,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
@ -1591,6 +1593,8 @@ type filterChainOpts struct {
|
||||||
useRDS bool
|
useRDS bool
|
||||||
tlsContext *envoy_tls_v3.DownstreamTlsContext
|
tlsContext *envoy_tls_v3.DownstreamTlsContext
|
||||||
statPrefix string
|
statPrefix string
|
||||||
|
forwardClientDetails bool
|
||||||
|
forwardClientPolicy envoy_http_v3.HttpConnectionManager_ForwardClientCertDetails
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *ResourceGenerator) makeUpstreamFilterChain(opts filterChainOpts) (*envoy_listener_v3.FilterChain, error) {
|
func (s *ResourceGenerator) makeUpstreamFilterChain(opts filterChainOpts) (*envoy_listener_v3.FilterChain, error) {
|
||||||
|
@ -1604,6 +1608,8 @@ func (s *ResourceGenerator) makeUpstreamFilterChain(opts filterChainOpts) (*envo
|
||||||
routeName: opts.routeName,
|
routeName: opts.routeName,
|
||||||
cluster: opts.clusterName,
|
cluster: opts.clusterName,
|
||||||
statPrefix: opts.statPrefix,
|
statPrefix: opts.statPrefix,
|
||||||
|
forwardClientDetails: opts.forwardClientDetails,
|
||||||
|
forwardClientPolicy: opts.forwardClientPolicy,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|
|
@ -44,6 +44,14 @@
|
||||||
"randomSampling": {
|
"randomSampling": {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"forwardClientCertDetails": "SANITIZE_SET",
|
||||||
|
"setCurrentClientCertDetails": {
|
||||||
|
"subject": true,
|
||||||
|
"cert": true,
|
||||||
|
"chain": true,
|
||||||
|
"dns": true,
|
||||||
|
"uri": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,6 +44,14 @@
|
||||||
"randomSampling": {
|
"randomSampling": {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"forwardClientCertDetails": "SANITIZE_SET",
|
||||||
|
"setCurrentClientCertDetails": {
|
||||||
|
"subject": true,
|
||||||
|
"cert": true,
|
||||||
|
"chain": true,
|
||||||
|
"dns": true,
|
||||||
|
"uri": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,6 +44,14 @@
|
||||||
"randomSampling": {
|
"randomSampling": {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"forwardClientCertDetails": "SANITIZE_SET",
|
||||||
|
"setCurrentClientCertDetails": {
|
||||||
|
"subject": true,
|
||||||
|
"cert": true,
|
||||||
|
"chain": true,
|
||||||
|
"dns": true,
|
||||||
|
"uri": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -126,6 +134,14 @@
|
||||||
"randomSampling": {
|
"randomSampling": {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"forwardClientCertDetails": "SANITIZE_SET",
|
||||||
|
"setCurrentClientCertDetails": {
|
||||||
|
"subject": true,
|
||||||
|
"cert": true,
|
||||||
|
"chain": true,
|
||||||
|
"dns": true,
|
||||||
|
"uri": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -208,6 +224,14 @@
|
||||||
"randomSampling": {
|
"randomSampling": {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"forwardClientCertDetails": "SANITIZE_SET",
|
||||||
|
"setCurrentClientCertDetails": {
|
||||||
|
"subject": true,
|
||||||
|
"cert": true,
|
||||||
|
"chain": true,
|
||||||
|
"dns": true,
|
||||||
|
"uri": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue