Enabling Service-to-service Traffic Across Admin Partitions

Consul Enterprise 1.11.0+: Admin partitions are supported in Consul Enterprise versions 1.11.0 and newer.

Mesh gateways enable you to route service mesh traffic between different Consul admin partitions. Partitions can reside in different clouds or runtime environments where general interconnectivity between all services in all partitions isn’t feasible.

Mesh gateways operate by sniffing and extracting the server name indication (SNI) header from the service mesh session and routing the connection to the appropriate destination based on the server name requested. The gateway does not decrypt the data within the mTLS session.

Prerequisites

Ensure that your Consul environment meets the following requirements.

Consul

Proxy

Envoy is the only proxy with mesh gateway capabilities in Consul.

Mesh gateway proxies receive their configuration through Consul, which automatically generates it based on the proxy’s registration. Consul can only translate mesh gateway registration information into Envoy configuration.

Sidecar proxies that send traffic to an upstream service through a gateway need to know the location of that gateway. They discover the gateway based on their sidecar proxy registrations. Consul can only translate the gateway registration information into Envoy configuration.

Sidecar proxies that do not send upstream traffic through a gateway are not affected when you deploy gateways. If you are using Consul’s built-in proxy as a service mesh sidecar it will continue to work for intra-datacenter traffic and will receive incoming traffic even if that traffic has passed through a gateway.

Configuration

Configure the following settings to register the mesh gateway as a service in Consul.

  • Specify mesh-gateway in the kind field to register the gateway with Consul.
  • Configure the proxy.upstreams parameters to route traffic to the correct service, namespace, and partition. Refer to the upstreams documentation for details. The service proxy.upstreams.destination_name is always required. The proxy.upstreams.destination_partition must be configured to enable cross-partition traffic. The proxy.upstreams.destination_namespace configuration is only necessary if the destination service is in a different namespace.
  • Configure the exported-services configuration entry to enable Consul to export services contained in an admin partition to one or more additional partitions. Refer to the Exported Services documentation for details.
  • Define the Proxy.Config settings using opaque parameters compatible with your proxy, i.e., Envoy. For Envoy, refer to the Gateway Options and Escape-hatch Overrides documentation for additional configuration information.
  • If ACLs are enabled, a token granting service:write for the gateway’s service name and service:read for all services in the datacenter or partition must be added to the gateway’s service definition. These permissions authorize the token to route communications for other Consul service mesh services, but does not allow decrypting any of their communications.

Modes

Each upstream associated with a service mesh proxy can be configured so that it is routed through a mesh gateway. Depending on your network, the proxy’s connection to the gateway can operate in one of the following modes:

  • none - (Default) No gateway is used and a service mesh connect proxy makes its outbound connections directly to the destination services.

  • local - The service mesh connect proxy makes an outbound connection to a gateway running in the same datacenter. The gateway at the outbound connection is responsible for ensuring that the data is forwarded to gateways in the destination partition.

  • remote - The service mesh connect proxy makes an outbound connection to a gateway running in the destination datacenter. The gateway forwards the data to the final destination service.

Service Mesh Proxy Configuration

Set the proxy to the preferred mode to configure the service mesh proxy. You can specify the mode globally or within child configurations to control proxy behaviors at a lower level. Consul recognizes the following order of precedence if the gateway mode is configured in multiple locations the order of precedence:

  1. Upstream definition (highest priority)
  2. Service instance definition
  3. Centralized service-defaults configuration entry
  4. Centralized proxy-defaults configuration entry

Example Configurations

Use the following example configurations to help you understand some of the common scenarios.

Enabling Gateways Globally

The following proxy-defaults configuration will enable gateways for all mesh services in the local mode.

Example: Enabling gateways globally.

Example: Enabling gateways globally.

  1. Kind = "proxy-defaults"
  2. Name = "global"
  3. MeshGateway {
  4. Mode = "local"
  5. }
  1. Kind: proxy-defaults
  2. MeshGateway:
  3. - Mode: local
  4. Name: global

Enabling Gateways Per Service

The following service-defaults configuration will enable gateways for all mesh services with the name web.

Example: Enabling gateways per service.

Example: Enabling gateways per service.

  1. Kind = "service-defaults"
  2. Name = "web"
  3. MeshGateway {
  4. Mode = "local"
  5. }
  1. Kind: service-defaults
  2. MeshGateway:
  3. - Mode: local
  4. Name: web

Enabling Gateways for a Service Instance

The following Proxy Service Registration definition will enable gateways for web service instances in the finance partition.

Example: Enabling gateways for a service instance.

Example: Enabling gateways for a service instance.

  1. service {
  2. name = "web-sidecar-proxy"
  3. kind = "connect-proxy"
  4. port = 8181
  5. proxy {
  6. destination_service_name = "web"
  7. mesh_gateway {
  8. mode = "local"
  9. }
  10. upstreams = [
  11. {
  12. destination_partition = "finance"
  13. destination_namespace = "default"
  14. destination_type = "service"
  15. destination_name = "billing"
  16. local_bind_port = 9090
  17. }
  18. ]
  19. }
  20. }
  1. service:
  2. - kind: connect-proxy
  3. name: web-sidecar-proxy
  4. port: 8181
  5. proxy:
  6. - destination_service_name: web
  7. mesh_gateway:
  8. - mode: local
  9. upstreams:
  10. - destination_name: billing
  11. destination_namespace: default
  12. destination_partition: finance
  13. destination_type: service
  14. local_bind_port: 9090

Enabling Gateways for a Proxy Upstream

The following service definition will enable gateways in local mode for three different partitions. Note that each service exists in the same namespace, but are separated by admin partition.

Example: Enabling gateways for a proxy upstream.

Example: Enabling gateways for a proxy upstream.

  1. service {
  2. name = "web-sidecar-proxy"
  3. kind = "connect-proxy"
  4. port = 8181
  5. proxy {
  6. destination_service_name = "web"
  7. upstreams = [
  8. {
  9. destination_name = "api"
  10. destination_namespace = "dev"
  11. destination_partition = "api"
  12. local_bind_port = 10000
  13. mesh_gateway {
  14. mode = "local"
  15. }
  16. },
  17. {
  18. destination_name = "db"
  19. destination_namespace = "dev"
  20. destination_partition = "db"
  21. local_bind_port = 10001
  22. mesh_gateway {
  23. mode = "local"
  24. }
  25. },
  26. {
  27. destination_name = "logging"
  28. destination_namespace = "dev"
  29. destination_partition = "logging"
  30. local_bind_port = 10002
  31. mesh_gateway {
  32. mode = "local"
  33. }
  34. },
  35. ]
  36. }
  37. }
  1. service:
  2. - kind: connect-proxy
  3. name: web-sidecar-proxy
  4. port: 8181
  5. proxy:
  6. - destination_service_name: web
  7. upstreams:
  8. - destination_name: api
  9. destination_namespace: dev
  10. destination_partition: api
  11. local_bind_port: 10000
  12. mesh_gateway:
  13. - mode: local
  14. - destination_name: db
  15. destination_namespace: dev
  16. destination_partition: db
  17. local_bind_port: 10001
  18. mesh_gateway:
  19. - mode: local
  20. - destination_name: logging
  21. destination_namespace: dev
  22. destination_partition: logging
  23. local_bind_port: 10002
  24. mesh_gateway:
  25. - mode: local