peering: initial sync (#12842)
- Add endpoints related to peering: read, list, generate token, initiate peering
- Update node/service/check table indexing to account for peers
- Foundational changes for pushing service updates to a peer
- Plumb peer name through Health.ServiceNodes path
see: ENT-1765, ENT-1280, ENT-1283, ENT-1283, ENT-1756, ENT-1739, ENT-1750, ENT-1679,
ENT-1709, ENT-1704, ENT-1690, ENT-1689, ENT-1702, ENT-1701, ENT-1683, ENT-1663,
ENT-1650, ENT-1678, ENT-1628, ENT-1658, ENT-1640, ENT-1637, ENT-1597, ENT-1634,
ENT-1613, ENT-1616, ENT-1617, ENT-1591, ENT-1588, ENT-1596, ENT-1572, ENT-1555
Co-authored-by: R.B. Boyer <rb@hashicorp.com>
Co-authored-by: freddygv <freddy@hashicorp.com>
Co-authored-by: Chris S. Kim <ckim@hashicorp.com>
Co-authored-by: Evan Culver <eculver@hashicorp.com>
Co-authored-by: Nitya Dhanushkodi <nitya@hashicorp.com>
2022-04-21 22:34:40 +00:00
|
|
|
package structs
|
|
|
|
|
|
|
|
// PeeringToken identifies a peer in order for a connection to be established.
|
|
|
|
type PeeringToken struct {
|
|
|
|
CA []string
|
|
|
|
ServerAddresses []string
|
|
|
|
ServerName string
|
|
|
|
PeerID string
|
|
|
|
}
|
2022-05-06 19:35:31 +00:00
|
|
|
|
|
|
|
// PeeredService is a service that has been configured with an exported-service config entry to be exported to a peer.
|
|
|
|
type PeeredService struct {
|
|
|
|
Name ServiceName
|
|
|
|
PeerName string
|
|
|
|
}
|
2022-05-19 19:21:44 +00:00
|
|
|
|
|
|
|
// NOTE: this is not serialized via msgpack so it can be changed without concern.
|
|
|
|
type ExportedServiceList struct {
|
|
|
|
// Services is a list of exported services that apply to both standard
|
|
|
|
// service discovery and service mesh.
|
|
|
|
Services []ServiceName
|
|
|
|
|
|
|
|
// DiscoChains is a list of exported service that ONLY apply to service mesh.
|
|
|
|
DiscoChains []ServiceName
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListAllDiscoveryChains returns all discovery chains (union of Services and
|
|
|
|
// DiscoChains).
|
|
|
|
func (list *ExportedServiceList) ListAllDiscoveryChains() map[ServiceName]struct{} {
|
|
|
|
chainsByName := make(map[ServiceName]struct{})
|
|
|
|
if list == nil {
|
|
|
|
return chainsByName
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, svc := range list.Services {
|
|
|
|
chainsByName[svc] = struct{}{}
|
|
|
|
}
|
|
|
|
for _, chainName := range list.DiscoChains {
|
|
|
|
chainsByName[chainName] = struct{}{}
|
|
|
|
}
|
|
|
|
return chainsByName
|
|
|
|
}
|