Consul
Configure Terminating Gateways for Consul on Kubernetes
Adding a terminating gateway is a multi-step process:
- Update the Helm chart with terminating gateway configuration options
- Deploy the Helm chart
- Access the Consul agent
- Register external services with Consul
Requirements
- Consul
- Consul on Kubernetes CLI
- Familiarity with Terminating Gateways
Update the Helm chart with terminating gateway configuration options
Minimum required Helm options:
values.yaml
global:
name: consul
terminatingGateways:
enabled: true
Deploying the Helm chart
The Helm chart may be deployed using the Consul on Kubernetes CLI.
$ consul-k8s install --config-file values.yaml
Accessing the Consul agent
You can access the Consul server directly from your host by running kubectl port-forward
. This is helpful for interacting with your Consul UI locally as well as for validating the connectivity of the application.
$ kubectl port-forward service/consul-server 8500 &
$ export CONSUL_HTTP_ADDR=http://localhost:8500
If ACLs are enabled also set:
$ export CONSUL_HTTP_TOKEN=$(kubectl get secret consul-bootstrap-acl-token --template='{{.data.token | base64decode }}')
Register external services with Consul
Note
Consul on Kubernetes now supports the Registration
CRD to register services running on external nodes with a terminating gateway. We recommend registering services with this CRD. For more information, refer to Register services running on external nodes to Consul on Kubernetes.
Registering the external services with Consul is a multi-step process:
- Register external services with Consul
- Update the terminating gateway ACL token if ACLs are enabled
- Create a
TerminatingGateway
resource to configure the terminating gateway - Create a
ServiceIntentions
resource to allow access from services in the mesh to external service - Define upstream annotations for any services that need to talk to the external services
Register external services with Consul
You may register an external service with Consul using ServiceDefaults
if
TransparentProxy
is enabled. Otherwise,
you may register the service as a node in the Consul catalog using the Registration
CRD.
The destination
field of the ServiceDefaults
Custom Resource Definition (CRD) allows clients to dial an external service directly. For this method to work, TransparentProxy
must be enabled.
The following table describes traffic behaviors when using the destination
field to route traffic through a terminating gateway:
Allowed | Notes | |||
---|---|---|---|---|
L4 | Hostname | Yes | CAFiles are not allowed because traffic is already end-to-end encrypted by the client. | |
L4 | IP | Yes | CAFiles are not allowed because traffic is already end-to-end encrypted by the client. | |
L4 | Hostname | No | The sidecar is not protocol aware and can not identify traffic going to the external service. | |
L4 | IP | No | There are no limitations on dialing IPs without TLS. | |
L7 | Hostname | Yes | Because traffic is already encrypted before the sidecar, it cannot route as L7 traffic. | |
L7 | IP | Yes | Because traffic is already encrypted before the sidecar, it cannot route as L7 traffic. | |
L7 | Hostname | No | A Host or :authority header is required. | |
L7 | IP | No | There are no limitations on dialing IPs without TLS. |
You can provide a caFile
to secure traffic that connect to external services through the terminating gateway.
Refer to Create the configuration entry for the terminating gateway for details.
Note: Regardless of the protocol
specified in the ServiceDefaults
, L7 intentions are not currently supported with ServiceDefaults
destinations.
Create a ServiceDefaults
custom resource for the external service:
service-defaults.yaml
apiVersion: consul.hashicorp.com/v1alpha1
kind: ServiceDefaults
metadata:
name: example-https
spec:
protocol: tcp
destination:
addresses:
- "example.com"
port: 443
Apply the ServiceDefaults
resource with kubectl apply
:
$ kubectl apply --filename service-defaults.yaml
All other terminating gateway operations can use the name of the ServiceDefaults
component, in this case "example-https", as a Consul service name.
Update terminating gateway ACL role if ACLs are enabled
If ACLs are enabled, update the terminating gateway ACL role to have service:write
permissions on all of the services
being represented by the gateway.
Create a new policy that includes the write permission for the service you created.
write-policy.hcl
service "example-https" {
policy = "write"
}
$ consul acl policy create -name "example-https-write-policy" -rules @write-policy.hcl
ID: xxxxxxxxxxxxxxx
Name: example-https-write-policy
Description:
Datacenters:
Rules:
service "example-https" {
policy = "write"
}
Obtain the ID of the terminating gateway role.
$ consul acl role list -format=json | jq --raw-output '[.[] | select(.Name | endswith("-terminating-gateway-acl-role"))] | if (. | length) == 1 then (. | first | .ID) else "Unable to determine the role ID because there are multiple roles matching this name.\n" | halt_error end'
<role id>
Update the terminating gateway ACL role with the new policy.
$ consul acl role update -id <role id> -policy-name example-https-write-policy
AccessorID: <role id>
SecretID: <secret id>
Description: RELEASE_NAME-terminating-gateway-acl-role
Local: true
Create Time: 2021-01-08 21:18:47.957450486 +0000 UTC
Policies:
63bf1d9b-a87d-8672-ddcb-d25e2d88adb8 - RELEASE_NAME-terminating-gateway-policy
f63d1ae6-ffe7-44bd-bf7a-704a86939a63 - example-https-write-policy
Create the configuration entry for the terminating gateway
Once the roles have been updated, create the TerminatingGateway resource to configure the terminating gateway:
terminating-gateway.yaml
apiVersion: consul.hashicorp.com/v1alpha1
kind: TerminatingGateway
metadata:
name: terminating-gateway
spec:
services:
- name: example-https
If TLS is enabled for external services registered through the Consul catalog and you are not using transparent proxy destination
, you must include the caFile
parameter that points to the system trust store of the terminating gateway container.
By default, the trust store is located in the /etc/ssl/certs/ca-certificates.crt
directory.
Configure the caFile
parameter in the TerminatingGateway
config entry to point to the /etc/ssl/cert.pem
directory if TLS is enabled and you are using one of the following components:
- Consul Helm chart 0.43 or older
- An Envoy image with an alpine base image
Apply the TerminatingGateway
resource with kubectl apply
:
$ kubectl apply --filename terminating-gateway.yaml
If using ACLs and TLS, create a ServiceIntentions
resource to allow access from services in the mesh to the external service:
service-intentions.yaml
apiVersion: consul.hashicorp.com/v1alpha1
kind: ServiceIntentions
metadata:
name: example-https
spec:
destination:
name: example-https
sources:
- name: static-client
action: allow
NOTE: L7 Intentions are not currently supported for ServiceDefaults
destinations.
Apply the ServiceIntentions
resource with kubectl apply
:
$ kubectl apply --filename service-intentions.yaml
Define the external services as upstreams for services in the mesh
As a final step, you may define and deploy the external services as upstreams for the internal mesh services that wish to talk to them. An example deployment is provided which will serve as a static client for the terminating gateway service.
static-client.yaml
apiVersion: v1
kind: Service
metadata:
name: static-client
spec:
selector:
app: static-client
ports:
- port: 80
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: static-client
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: static-client
spec:
replicas: 1
selector:
matchLabels:
app: static-client
template:
metadata:
name: static-client
labels:
app: static-client
annotations:
'consul.hashicorp.com/connect-inject': 'true'
spec:
containers:
- name: static-client
image: curlimages/curl:latest
command: ['/bin/sh', '-c', '--']
args: ['while true; do sleep 30; done;']
serviceAccountName: static-client
Deploy the service with kubectl apply
.
$ kubectl apply --filename static-client.yaml
Wait for the service to be ready.
$ kubectl rollout status deploy static-client --watch
deployment "static-client" successfully rolled out
You can verify connectivity of the static-client and terminating gateway via a curl command.
$ kubectl exec deploy/static-client -- curl -vvvs https://example.com/