Request pathway from a linkerd injected deployment to a normal deployment

2/9/2021

I have many deployments in my Kubernetes cluster. How does the pathway for a HTTP/1.x request looks like from a pod injected with linkerd to another pod without linkerd injected ?

-- sap
kubernetes
linkerd

1 Answer

2/9/2021

The request will traverse the proxy in the source pod and will simply hit the destination pod directly. Shouldn't really affect anything, other than Linkerd won't be able to handle mTLS and you won't get client-side metrics on the destination.

-- William Morgan
Source: StackOverflow