Ingress Gateways

    Ingress gateways enable connectivity within your organizational network from services outside the Consul service mesh to services in the mesh. An ingress gateway is a type of proxy and must be registered as a service in Consul, with the kind set to “ingress-gateway”. They are an entrypoint for outside traffic and allow you to define what services should be exposed and on what port. You configure an ingress gateway by defining a set of that each map to a set of backing services.

    To enable easier service discovery, a new Consul is provided, on .

    For listeners with a protocol other than tcp, multiple services can be specified for a single listener. In this case, the ingress gateway relies on host/authority headers to decide the service that should receive the traffic. The host used to match traffic defaults to the , but can be changed using the hosts field.

    Ingress gateways also require that your Consul datacenters are configured correctly:

    • You’ll need to use Consul version 1.8.0 or newer.
    • Consul must be enabled on the datacenter’s Consul servers.
    • gRPC must be enabled on all client agents.

    Currently, is the only proxy with ingress gateway capabilities in Consul.

    For a complete example of how to allow external traffic inside your Consul service mesh, review the ingress gateway tutorial.

    Ingress gateways are configured in service definitions and registered with Consul like other services, with two exceptions. The first is that the must be “ingress-gateway”. Second, the ingress gateway service definition may contain a Proxy.Config entry just like a Connect proxy service, to define opaque configuration parameters useful for the actual proxy software. For Envoy there are some supported gateway options as well as .

    Note: If ACLs are enabled, ingress gateways must be registered with a token granting service:write for the ingress gateway’s service name, service:read for all services in the ingress gateway’s configuration entry, and node:read for all nodes of the services in the ingress gateway’s configuration entry. These privileges authorize the token to route communications to other Connect services. If the Consul client agent on the gateway’s node is not configured to use the default gRPC port, 8502, then the gateway’s token must also provide agent:read for its node’s name in order to discover the agent’s gRPC port. gRPC is used to expose Envoy’s xDS API to Envoy proxies.

    Advanced Topic: This topic describes a low-level feature designed for developers building integrations with custom TLS management solutions.

    Consul 1.11 added support for ingress gateways to serve TLS certificates to inbound traffic that are sourced from an external service. The external service must implement Envoy’s gRPC Secret Discovery Service (or SDS) API.

    The following procedure describes how to configure an ingress gateway with TLS certificates from an SDS source. The instructions assume that you are familiar with Envoy configuration and the SDS protocol.

    Each Envoy proxy that makes up this Ingress Gateway must define one or more additional when registering. These additional clusters define how Envoy should connect to the required SDS service(s). Defining extra clusters in Envoy’s bootstrap configuration requires a manual registration of the Ingress Gateway with Consul proxy. It’s not possible to use the -register flag with consul connect envoy -gateway=ingress to automatically register the proxy in this case.

    The cluster(s) must provide connection information and any necessary authentication information such as mTLS credentials.

    The following example will demonstrate how to use:

    • A DNS name to discover the SDS service addresses
    • Local certificate files for TLS client authentication with the SDS server. The certificates are assumed to be created and managed by some other process.
    1. Register the proxy service.

      The following Proxy Service Definition defines the additional cluster configuration that will be provided to Envoy when it starts. With this TLS configuration, Envoy will detect changes to the certificate and key files on disk so an external process may maintain and rotate them without needing an Envoy restart.

      1. // public-ingress.hcl
      2. Services {
      3. Name = "public-ingress"
      4. Kind = "ingress-gateway"
      5. Proxy {
      6. Config {
      7. envoy_extra_static_clusters_json = <<EOF
      8. {
      9. "name": "sds-cluster",
      10. "connect_timeout": "5s",
      11. "http2_protocol_options": {},
      12. "type": "LOGICAL_DNS",
      13. "transport_socket": {
      14. "name":"tls",
      15. "typed_config": {
      16. "@type":"type.googleapis.com/envoy.extensions.transport_sockets.tls.v3.UpstreamTlsContext",
      17. "common_tls_context":{
      18. "tls_certificate_sds_secret_configs": [
      19. {
      20. "name":"tls_sds",
      21. "sds_config":{
      22. "path":"/certs/sds-auth-cert.json"
      23. }
      24. }
      25. ],
      26. "validation_context_sds_secret_config": {
      27. "name":"validation_context_sds",
      28. "sds_config":{
      29. "path":"/certs/sds-validation.json"
      30. }
      31. }
      32. }
      33. }
      34. },
      35. "load_assignment": {
      36. "cluster_name": "sds-cluster",
      37. "endpoints": [
      38. {
      39. "lb_endpoints": [
      40. {
      41. "address": {
      42. "socket_address": {
      43. "port_value": 8080,
      44. }
      45. }
      46. }
      47. }
      48. ]
      49. }
      50. ]
      51. }
      52. }
      53. EOF
      54. }
      55. }
      56. }
    2. Issue the following command to create the registration.

      1. consul services register public-ingress.hcl
      1. consul services register public-ingress.hcl

    Setup TLS Client Authentication for SDS

    Configuration files similar to the following examples must be available on the disk where the Envoy proxy will run. The actual certificates and keys referenced in the configuration files must also be present.

    1. Configure TLS client authentication for SDS.

      The certificates and keys must be saved to the same disk where the Envoy proxy will run. The following example files reference the PEM-encoded certificate and key files to be used for TLS Client Authentication with the SDS service (sds-client-auth.{crt,key}) and the certificate authority certificate used to validate the SDS server’s TLS credentials (sds-ca.crt).

      Refer to [Envoy’s documentation] ) for more details on this configuration and other possible authentication options.

      1. // /certs/sds-auth-cert.json
      2. {
      3. "resources": [
      4. {
      5. "@type": "type.googleapis.com/envoy.extensions.transport_sockets.tls.v3.Secret",
      6. "name": "tls_sds",
      7. "tls_certificate": {
      8. "certificate_chain": {
      9. "filename": "/certs/sds-client-auth.crt"
      10. },
      11. "private_key": {
      12. "filename": "/certs/sds-client-auth.key"
      13. }
      14. }
      15. }
      16. ]
      17. }
      1. // /certs/sds-validation.json
      2. {
      3. "resources": [
      4. {
      5. "@type": "type.googleapis.com/envoy.extensions.transport_sockets.tls.v3.Secret",
      6. "name": "validation_context_sds",
      7. "validation_context": {
      8. "trusted_ca": {
      9. "filename": "/certs/sds-ca.crt"
      10. }
      11. }
      12. }
      13. ]
      14. }
      1. // /certs/sds-validation.json
      2. {
      3. "@type": "type.googleapis.com/envoy.extensions.transport_sockets.tls.v3.Secret",
      4. "name": "validation_context_sds",
      5. "validation_context": {
      6. "trusted_ca": {
      7. "filename": "/certs/sds-ca.crt"
      8. }
      9. }
      10. }
      11. ]
      12. }
    2. Issue the following command to start Envoy.

      1. $ consul connect envoy -gateway=ingress -service public-ingress

    Configure the Ingress Gateway to Use Certificates from SDS

    SDS certificates may now be configured in the ingress-gateway Config Entry.

    The following example shows a single default certificate and key being used for all listeners.

    1. // public-ingress-cfg.hcl
    2. Kind = "ingress-gateway"
    3. Name = "public-ingress"
    4. TLS {
    5. SDS {
    6. # This must match the name of the static cluster from step #1
    7. ClusterName = "sds-cluster"
    8. # This is the name of the certificate resource to load.
    9. CertResource = "example.com-public-cert"
    10. }
    11. }
    12. Listeners = [
    13. {
    14. Port = 8443
    15. Protocol = "http"
    16. Services = ["*"]
    17. }
    18. ]
    1. // public-ingress-cfg.hcl
    2. Kind = "ingress-gateway"
    3. Name = "public-ingress"
    4. TLS {
    5. SDS {
    6. # This must match the name of the static cluster from step #1
    7. ClusterName = "sds-cluster"
    8. # This is the name of the certificate resource to load.
    9. CertResource = "example.com-public-cert"
    10. }
    11. }
    12. Listeners = [
    13. {
    14. Port = 8443
    15. Protocol = "http"
    16. Services = ["*"]
    17. }
    18. ]
    1. Run to write this configuration.

      The Envoy instance will now start a listener on port 8443 and attempt to fetch the TLS certificate named from the SDS server.