Linkerd 2 Integration
Linkerd 2 is a zero-config and ultra-lightweight service mesh. Ambassador Edge Stack natively supports Linkerd 2 for service discovery, end-to-end TLS (including mTLS between services), and (with Linkerd 2.8) multicluster operation.
Architecture
Linkerd 2 is designed for simplicity, security, and performance. In the cluster, it runs a control plane in its own namespace and then injects sidecar proxy containers in every Pod that should be meshed.
Ambassador Edge Stack itself also needs to be interwoven or "meshed" with Linkerd 2, and then configured to add special Linkerd headers to requests that tell Linkerd 2 where to forward them. This ie because mTLS between services is automatically handled by the control plane and the proxies. Istio and Consul allow Ambassador to initiate mTLS connections to upstream services by grabbing a certificate from a Kubernetes Secret. However, Linkerd 2 does not work this way, so Ambassador must rely on Linkerd 2 for mTLS connections to upstream services. This means we want Linkerd 2 to inject its sidecar into Ambassador's pods, but not Istio and Consul.
Through that setup, Ambassador Edge Stack terminates external TLS as the gateway and traffic is then immediately wrapped into mTLS by Linkerd 2 again. Thus we have a full end-to-end TLS encryption chain.
Getting started
In this guide, you will use Linkerd 2 Auto-Inject to mesh a service and use Ambassador Edge Stack to dynamically route requests to that service based on Linkerd 2's service discovery data. If you already have Ambassador Edge Stack installed, you will just need to install Linkerd 2 and deploy your service.
Setting up Linkerd 2 requires to install three components. The first is the CLI on your local machine, the second is the actual Linkerd 2 control plane in your Kubernetes Cluster. Finally, you have to inject your services' Pods with Linkerd Sidecars to mesh them.
Install and configure Linkerd 2 instructions. Follow the guide until Step 3. That should give you the CLI on your machine and all required pre-flight checks.
In a nutshell, these steps boil down to the following:
# install linkerd cli toolcurl -sL https://run.linkerd.io/install | sh# add linkerd to your pathexport PATH=$PATH:$HOME/.linkerd2/bin# verify installationlinkerd versionNow it is time to install Linkerd 2 itself. To do so execute the following command:
linkerd install --ha | kubectl apply -f -This will install Linkerd 2 in high-availability mode for the control plane. This means the controller and other components are started multiple times. Since Linkerd 2.5 it is also made sure the components are split across different nodes, if possible.
Note that this simple command automatically enables mTLS by default and registers the AutoInject Webhook with your Kubernetes API Server. You now have a production-ready Linkerd 2 setup rolled out into your cluster!
Deploy Ambassador Edge Stack.
Note: If this is your first time deploying Ambassador Edge Stack, reviewing the Ambassador Edge Stack getting started is strongly recommended.
kubectl apply -f https://www.getambassador.io/yaml/ambassador/ambassador-rbac.yamlIf you're on GKE, or haven't previously created the Ambassador Edge Stack service, please see the quick start guide.
Configure Ambassador Edge Stack to add Linkerd 2 Headers to requests.
---apiVersion: getambassador.io/v2kind: Modulemetadata:name: ambassadorspec:config:add_linkerd_headers: trueThis will tell Ambassador Edge Stack to add additional headers to each request forwarded to Linkerd 2 with information about where to route this request to. This is a general setting. You can also set
add_linkerd_headers
per Mapping.
Routing to Linkerd 2 Services
You'll now register a demo application with Linkerd 2, and show how Ambassador Edge Stack can route to this application using endpoint data from Linkerd 2.
Enable AutoInjection on the Namespace you are about to deploy to:
apiVersion: v1kind: Namespacemetadata:name: default # change this to your namespace if you're not using 'default'annotations:linkerd.io/inject: enabledSave the above to a file called
namespace.yaml
and runkubectl apply -f namespace.yaml
. This will enable the namespace to be handled by the AutoInjection Webhook of Linkerd 2. Every time something is deployed to that namespace, the deployment is passed to the AutoInject Controller and injected with the Linkerd 2 proxy sidecar automatically.Deploy the QOTM demo application.
---apiVersion: extensions/v1beta1kind: Deploymentmetadata:name: qotmspec:replicas: 1strategy:type: RollingUpdatetemplate:metadata:labels:app: qotmspec:containers:- name: qotmimage: docker.io/datawire/qotm:1.7ports:- name: http-apicontainerPort: 5000env:- name: POD_IPvalueFrom:fieldRef:fieldPath: status.podIPreadinessProbe:httpGet:path: /healthport: 5000initialDelaySeconds: 30periodSeconds: 3resources:limits:cpu: "0.1"memory: 100MiSave the above to a file called
qotm.yaml
and deploy it withkubectl apply -f qotm.yamlWatch via
kubectl get pod -w
as the Pod is created. Note that it starts with0/2
containers automatically, as it has been auto-injected by the Linkerd 2 Webhook.Verify the QOTM pod has been registered with Linkerd 2. You can verify the QOTM pod is registered correctly by accessing the Linkerd 2 Dashboard.
linkerd dashboardYour browser should automatically open the correct URL. Otherwise, note the output from the above command and open that in a browser of your choice.
Create a
Mapping
for theqotm-Linkerd2
service.---apiVersion: getambassador.io/v2kind: Mappingmetadata:name: linkerd2-qotmspec:prefix: /qotm-linkerd2/service: qotm-linkerd2
Save the above YAML to a file named qotm-mapping.yaml
, and apply it with:
kubectl apply -f qotm-mapping.yaml
to apply this configuration to your Kubernetes cluster. Note that in the above config there is nothing special to make it work with Linkerd 2. The general config for Ambassador Edge Stack already adds Linkerd Headers when forwarding requests to the service mesh.
Send a request to the
qotm-Linkerd2
API.curl -L http://$AMBASSADOR_IP/qotm-Linkerd2/{"hostname":"qotm-749c675c6c-hq58f","ok":true,"quote":"The last sentence you read is often sensible nonsense.","time":"2019-03-29T22:21:42.197663","version":"1.7"}
Congratulations! You're successfully routing traffic to the QOTM application, the location of which is registered in Linkerd 2. The traffic to Ambassador Edge Stack is not TLS secured, but from Ambassador Edge Stack to the QOTM an automatic mTLS connection is being used.
If you now configure TLS termination in Ambassador Edge Stack, you have an end-to-end secured connection.
Multicluster Operation
Linkerd 2.8 can support multicluster operation, where the Linkerd mesh transparently bridges from one cluster to another, allowing seamless access between the two. This works using the Linkerd "service mirror controller" to discover services in the target cluster, and expose (mirror) them in the source cluster. Requests to mirrored services in the source cluster are transparently proxied via the Ambassador in the target cluster to the appropriate target service, using Linkerd's automatic mTLS to protect the requests in flight between clusters. By configuring Linkerd to use the existing Ambassador as the ingress gateway between clusters, you eliminate the need to deploy and manage an additional ingress gateway.
Initial Multicluster Setup
Install Ambassador and the Linkerd multicluster control plane. Make sure you've also linked the clusters.
Inject the Ambassador deployment with Linkerd (even if you have AutoInject enabled):
kubectl -n ambassador get deploy ambassador -o yaml | \linkerd inject \--skip-inbound-ports 80,443 \--require-identity-on-inbound-ports 4183 - | \kubectl apply -f -(It's important to require identity on the gateway port so that automatic mTLS works, but it's also important to let Ambassador handle its own ports. AutoInject can't handle this on its own.)
Configure Ambassador as normal for your application. Don't forget to set
add_linkerd_headers: true
!
At this point, your Ambassador installation should work fine with multicluster Linkerd as a source cluster: you can configure Linkerd to bridge to a target cluster, and all should be well.
Using the Cluster as a Target Cluster
Allowing the Ambassador installation to serve as a target cluster requires explicitly giving permission for Linkerd to mirror services from the cluster, and explicitly telling Linkerd to use the Ambassador as the target gateway.
Configure the target cluster Ambassador to allow insecure routing.
When Ambassador is running in a Linkerd mesh, Linkerd provides transport security, so connections coming in from the Linkerd in the source cluster will always be HTTP when they reach Ambassador. Therefore, the
Host
CRDs corresponding to services that you'll be accessing from the source cluster must be configured toRoute
insecure requests. More information on this topic is available in theHost
documentation; an example might beapiVersion: getambassador.io/v2kind: Hostmetadata:name: linkerd-hostspec:hostname: host.example.comacmeProvider:authority: nonerequestPolicy:insecure:action: RouteConfigure the target cluster Ambassador to support Linkerd health checks.
Multicluster Linkerd does its own health checks beyond what Kubernetes does, so a
Mapping
is needed to allow Linkerd's health checks to succeed:apiVersion: getambassador.io/v2kind: Mappingmetadata:name: public-health-checknamespace: ambassadorspec:prefix: /-/ambassador/readyrewrite: /ambassador/v0/check_readyservice: localhost:8877bypass_auth: trueWhen configuring Ambassador, Kubernetes is usually configured to run health checks directly against port 8877 -- however, that port is not meant to be exposed outside the cluster. The
Mapping
permits accessing the health check endpoint without directly exposing the port.(The actual prefix in the
Mapping
is not terribly important, but it needs to match the metadata supplied to the service mirror controller, below.)Configure the target cluster Ambassador for the service mirror controller.
This requires changes to the Ambassador's
deployment
andservice
. For all of these commands, you will need to make sure your Kubernetes context is set to talk to the target cluster.In the
deployment
, you need theconfig.linkerd.io/enable-gateway
annotation
:kubectl -n ambassador patch deploy ambassador -p='spec:template:metadata:annotations:config.linkerd.io/enable-gateway: "true"'In the
service
, you need to provide appropriate namedport
definitions:mc-gateway
needs to be defined asport
4143mc-probe
needs to be defined asport
80,targetPort
8080 (or wherever Ambassador is listening)
kubectl -n ambassador patch svc ambassador --type='json' -p='[{"op":"add","path":"/spec/ports/-", "value":{"name": "mc-gateway", "port": 4143}},{"op":"replace","path":"/spec/ports/0", "value":{"name": "mc-probe", "port": 80, "targetPort": 8080}}]'Finally, the
service
also needs its own set ofannotation
s:kubectl -n ambassador patch svc ambassador -p='metadata:annotations:mirror.linkerd.io/gateway-identity: ambassador.ambassador.serviceaccount.identity.linkerd.cluster.localmirror.linkerd.io/multicluster-gateway: "true"mirror.linkerd.io/probe-path: -/ambassador/readymirror.linkerd.io/probe-period: "3"'(Here, the value of
mirror.linkerd.io/probe-path
must match theprefix
using for the probeMapping
above.)Configure individual exported services. Adding the following annotations to a service will tell the service to use Ambassador as the gateway:
kubectl -n $namespace patch svc $service -p='metadata:annotations:mirror.linkerd.io/gateway-name: ambassadormirror.linkerd.io/gateway-ns: ambassador'This annotation will tell Linkerd that the given service can be reached via the Ambassador in the
ambassador
namespace.Verify that all is well from the source cluster.
For all of these commands, you'll need to set your Kubernetes context for the source cluster.
First, check to make that the clusters are correctly linked:
linkerd check --multiclusterNext, make sure that the Ambassador gateway shows up when listing active gateways:
linkerd multicluster gatewaysAt this point, all should be well!
More information
For more about Ambassador Edge Stack's integration with Linkerd 2, read the service discovery configuration documentation. For further reading about Linkerd 2 multi-cluster, see the install documentation and introduction.
Questions?
We’re here to help. If you have questions, join our Slack or contact us.