transparent_proxy Block
Placement | job -> group -> service -> connect -> sidecar_service -> proxy -> transparent_proxy |
The transparent_proxy
block configures the Envoy sidecar proxy to act as a
Consul Connect transparent proxy. This simplifies the configuration of
Consul Connect by eliminating the need to configure upstreams
blocks in
Nomad. Instead, the Envoy proxy will determines its configuration entirely from
Consul service intentions.
When transparent proxy is enabled traffic will automatically flow through the
Envoy proxy. If the local Consul agent is serving DNS, Nomad will also set up
the task's nameservers to use Consul. This lets your workload use the virtual
IP DNS name from Consul, rather than configuring a template
block that
queries services.
Using transparent proxy has some important restrictions:
- You can only have a single
connect
block in any task group that uses transparent proxy. - You cannot set a
network.dns
block on the allocation (unless you setno_dns
, see below). - The node where the allocation is placed must be configured as described in the Service Mesh integration documentation for Transparent Proxy.
transparent_proxy
Parameters
exclude_inbound_ports
([]string: nil)
- A list of inbound ports to exclude from the inbound traffic redirection. This allows traffic on these ports to bypass the Envoy proxy. These ports can be specified as either network port labels or as numeric ports. Nomad will automatically add the following to this list:- The
local_path_port
of anyexpose
block. - The port of any service check with
expose=true
set. - The port of any
network.port
with astatic
value.
- The
exclude_outbound_cidrs
([]string: nil)
- A list of CIDR subnets that should be excluded from outbound traffic redirection. This allows traffic to these subnets to bypass the Envoy proxy. Note this is independent ofexclude_outbound_ports
; CIDR subnets listed here are excluded regardless of the port.exclude_outbound_ports
([]int: nil)
- A list of port numbers that should be excluded from outbound traffic redirection. This allows traffic to these subnets to bypass the Envoy proxy. Note this is independent ofexclude_outbound_cidrs
; ports listed here are excluded regardless of the CIDR.exclude_uids
([]string: nil)
- A list of Unix user IDs (UIDs) that should be excluded from outbound traffic redirection. When unset, only the Envoy proxy's user will be allowed to bypass the iptables rule.no_dns
(bool: false)
- By default, Consul will be set as the nameserver for the workload and IP tables rules will redirect DNS queries to Consul. If you want only external DNS, setno_dns=true
. You will need to add your own CIDR and port exclusions for your DNS nameserver. You cannot setnetwork.dns
ifno_dns=false
.outbound_port
(int: 15001)
- The port that Envoy will bind on inside the network namespace. The iptables rules created byconsul-cni
will force traffic to flow to this port. You should only set this value if you have specifically set theoutbound_listener_port
in your Consul proxy configuration. You can change the default value for a given node via client metadata (see below).uid
(string "101")
- The Unix user ID (UID) used by the Envoy proxy. You should only set this value if you have a custom build of the Envoy container image which uses a different UID. You can change the default value for a given node via client metadata (see below).
Client Metadata
You can change the default outbound_port
and uid
for a given client node by updating the node metadata via the nomad node meta
apply
command. The attributes that can be updated are:
connect.transparent_proxy.default_uid
: Sets the default value ofuid
for this node.connect.transparent_proxy.default_outbound_port
: Sets the default value ofoutbound_port
for this node.
For example, to set the default value for the uid
field to 120:
You should not normally need to set these values unless you are using custom Envoy images.
Examples
Minimal Example
The following example is a minimal transparent proxy specification. Note that
with transparent proxy, you will not need to configure an upstreams
block.
If you had a downstream task group count-dashboard
that needed to connect to
an upstream task group count-api
listening on port 9001, you could create a
Consul service intention with the following specification:
And then the downstream service count-dashboard
could reach the count-api
service by making requests to http://count-api.virtual.consul
.
External DNS
The following example is a transparent proxy specification where external DNS is
used. To find the address of other allocations in this configuration, you will
need to use a template
block to query Consul.