mirror of https://github.com/status-im/consul.git
d05f67cebd
* add controller docs * add v2 service mesh docs |
||
---|---|---|
.. | ||
README.md | ||
controllers.png |
README.md
V2 Service Mesh Architecture
In Consul 1.16 and 1.17 releases, Consul's service mesh has been rewritten to use the controller architecture and the resource APIs.
At a high level, the service mesh consists of resources and controllers living in three groups: catalog
, mesh
,
and auth
.
The controllers in each groups are responsible for producing an output that may then be used by other controllers.
-> Note: This diagram is valid as of Consul 1.17. It may change in the future releases.
Catalog controllers
Catalog controllers are responsible for reconciling resources in the catalog
API group.
- FailoverPolicy controller validates
FailoverPolicy
resource has valid service references and updating the status theFailoverPolicy
resource with the result. - WorkloadHealth controller takes in workloads and any relevant health statuses and updates the status of a workload with the combined health status.
- NodeHealth controller takes in nodes and any relevant health statuses and updates the status of a node with the combined health status.
- ServiceEndpoints controller generates a
ServiceEndpoints
object that is name-aligned with a service and contains workload addresses and ports that constitute a service.
Mesh Controllers
- ProxyConfiguration controller generates a
ComputedProxyConfiguration
resource that is name-aligned with a workload.ComputedProxyConfiguration
contains all mergedProxyConfiguration
resources that apply to a specific workload. - Routes controller generates a
ComputedRoutes
resource that is name-aligned with a service. It contains merged configuration from all xRoutes objects as well asFailoverPolicy
andDestinationPolicy
. - ExplicitDestinations controller generates a
ComputedExplicitDestinations
resource that is name-aligned with a workload. It contains mergedDestinations
resources that apply to a specific workload. - SidecarProxy controller takes in the results of the previous three controllers as well as some user-provided
resources and generates
ProxyStateTemplate
resource which serves as the representation of Envoy configuration for sidecar proxies. - XDSController takes in
ProxyStateTemplate
resources, fills in missing endpoints references as well as certificates and CA roots and sends them over to another component that sends this information over to Envoy.
Auth Controllers
- TrafficPermissions controller generates
ComputedTrafficPermissions
resource that is name-aligned withWorkloadIdentity
. This computed resource contains all traffic permissions that apply to a specific workload identity.