sap
sap

Reputation: 254

Request pathway from a linkerd injected deployment to a normal deployment

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 ?

Upvotes: 2

Views: 55

Answers (1)

William Morgan
William Morgan

Reputation: 476

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.

Upvotes: 2

Related Questions