MeshTCPRoute
This policy uses a new policy matching algorithm.
Do not combine with TrafficRoute except for the default route-all
route, which should be kept.
The MeshTCPRoute
policy allows you to alter and redirect TCP requests
depending on where the request is coming from and where it’s going to.
TargetRef support matrix
targetRef |
Allowed kinds |
---|---|
targetRef.kind |
Mesh , MeshSubset , MeshService , MeshServiceSubset |
to[].targetRef.kind |
MeshService |
For more information, see the matching docs.
Configuration
Unlike other outbound policies, MeshTCPRoute
doesn’t contain default
directly in the to
array. The default
section is nested inside rules
,
so the policy structure looks like the following:
Default configuration
The following describes the default configuration settings of the MeshTCPRoute
policy:
backendRefs
: (Optional) List of destinations for the request to be redirected tokind
: EitherMeshService
orMeshServiceSubset
name
: The service nametags
: Service tags. These must be specified if thekind
isMeshServiceSubset
.weight
: When a request matches the route, the choice of an upstream cluster is determined by its weight. Total weight is a sum of all weights in thebackendRefs
list.
Interactions with MeshHTTPRoute
MeshHTTPRoute
takes priority over MeshTCPRoute
when both are defined for the same service, and the matching MeshTCPRoute
is ignored.
Examples
Traffic split
You can use MeshTCPRoute
to split TCP traffic between services with
different tags and implement A/B testing or canary deployments.
Here’s an example of a MeshTCPRoute
that splits the traffic from
frontend_kuma-demo_svc_8080
to backend_kuma-demo_svc_3001
between versions:
You can apply the configuration with kubectl apply -f [..]
.
Traffic redirection
You can use MeshTCPRoute
to redirect outgoing traffic from one service to
another.
Here’s an example of a MeshTCPRoute
that redirects outgoing traffic
originating at frontend_kuma-demo_svc_8080
from backend_kuma-demo_svc_3001
to external-backend
:
You can apply the configuration with kubectl apply -f [..]
.
Route policies with different types targeting the same destination
If multiple route policies with different types (MeshTCPRoute
and MeshHTTPRoute
for example) target the same destination, only a single route type with the highest
specificity will be applied.
In this example, both MeshTCPRoute
and MeshHTTPRoute
target the same destination:
MeshTCPRoute:
MeshHTTPRoute:
Depending on the backend
’s protocol:
MeshHTTPRoute
will be applied ifhttp
,http2
, orgrpc
are specifiedMeshTCPRoute
will be applied iftcp
orkafka
is specified, or when nothing is specified