Careful!
You are browsing documentation for a version of Kuma that is not the latest release.
Traffic Route
Traffic Route is an outbound policy. Dataplanes whose configuration is modified are in the sources
matcher.
This policy lets you configure routing rules for the traffic in the mesh. It supports weighted routing and can be used to implement versioning across services or to support deployment strategies such as blue/green or canary.
Note the following:
- The configuration must specify the data plane proxies for the routing rules.
- The
spec.destinations
field supports onlykuma.io/service
. - All available tags are supported for
spec.conf
. - This is an outbound connection policy. Make sure that your data plane proxy configuration includes the appropriate tags.
Kuma also supports locality aware load balancing.
Default TrafficRoute
The control plane creates a default TrafficRoute
every time a new Mesh
is created. The default TrafficRoute
enables the traffic between all the services in the mesh.
Usage
Here is a full example of TrafficRoute
policy
Kuma utilizes positive weights in the TrafficRoute
policy and not percentages, therefore Kuma does not check if the total adds up to 100. If we want to stop sending traffic to a destination service we change the weight
for that service to 0.
L4 Traffic Split
We can use TrafficRoute
to split a TCP traffic between services with different tags implementing A/B testing or canary deployments.
Here is an example of a TrafficRoute
that splits the traffic over the two different versions of the application.
90% of the connections from backend_default_svc_80
service will be initiated to redis_default_svc_6379
with tag version: 1.0
and 10% of the connections will be initiated to version: 2.0
L4 Traffic Rerouting
We can use TrafficRoute
to fully reroute a TCP traffic to different version of a service or even completely different service.
Here is an example of a TrafficRoute
that redirects the traffic to another-redis_default_svc_6379
when backend_default_svc_80
is trying to consume redis_default_svc_6379
.
L7 Traffic Split
We can use TrafficRoute
to split an HTTP traffic between services with different tags implementing A/B testing or canary deployments.
Here is an example of a TrafficRoute
that splits the traffic from frontend_default_svc_80
to backend_default_svc_80
between versions,
but only on endpoints starting with /api
. All other endpoints will go to version: 1.0
In order to use L7 Traffic Split, we need to mark the destination service with kuma.io/protocol: http
.
L7 Traffic Modification
We can use TrafficRoute
to modify outgoing requests, by setting new path or changing request and response headers.
Here is an example of a TrafficRoute
that adds x-custom-header
with value xyz
when frontend_default_svc_80
tries to consume backend_default_svc_80
.
In order to use L7 Traffic Modification, we need to mark the destination service with kuma.io/protocol: http
.
L7 Traffic Rerouting
We can use TrafficRoute
to modify outgoing requests, by setting new path or changing request and response headers.
Here is an example of a TrafficRoute
that redirect traffic to offers_default_svc_80
when frontend_default_svc_80
is trying to consume backend_default_svc_80
on /offers
endpoint.
In order to use L7 Traffic Rerouting, we need to mark the destination service with kuma.io/protocol: http
.
Load balancer types
There are different load balancing algorithms that can be used to determine how traffic is routed to the destinations. By default TrafficRoute
uses the roundRobin
load balancer, but more options are available:
-
roundRobin
is a simple algorithm in which each available upstream host is selected in round robin order.Example:
-
leastRequest
uses different algorithms depending on whether the hosts have the same or different weights. It has a single configuration fieldchoiceCount
, which denotes the number of random healthy hosts from which the host with the fewer active requests will be chosen.Example:
ringHash
implements consistent hashing to the upstream hosts. It has the following fields:hashFunction
the hash function used to hash the hosts onto the ketama ring. Can beXX_HASH
orMURMUR_HASH_2
.minRingSize
minimum hash ring size.maxRingSize
maximum hash ring size.
Example:
-
random
selects a random available host.Example:
-
maglev
implements consistent hashing to upstream hostsExample:
All options
$schema: http://json-schema.org/draft-04/schema#
$ref: #/definitions/TrafficRoute
definitions
TrafficRoute
## Traffic Route
TrafficRoute defines routing rules for the traffic in the mesh.
Type:
object
This schema accepts additional properties.
Properties
- sources
- List of selectors to match data plane proxies that are sources of traffic.
- Type:
array
- Items
- $ref: #/definitions/kuma.mesh.v1alpha1.Selector
- destinations
- List of selectors to match services that are destinations of traffic. Notice the difference between sources and destinations. While the source of traffic is always a data plane proxy within a mesh, the destination is a service that could be either within or outside of a mesh.
- Type:
array
- Items
- $ref: #/definitions/kuma.mesh.v1alpha1.Selector
- conf
- Configuration for the route.
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.TrafficRoute.Conf
- This schema accepts additional properties.
- Properties kuma.mesh.v1alpha1.Selector
- sources
## Selector
Selector defines structure for selecting tags for given dataplane
Type:
object
This schema accepts additional properties.
Properties
- match
- Tags to match, can be used for both source and destinations
- Type:
object
- This schema accepts additional properties.
- Properties kuma.mesh.v1alpha1.TrafficRoute.Conf
- match
## Conf
Conf defines the destination configuration.
Type:
object
This schema accepts additional properties.
Properties
- split
- List of destinations with weights assigned to them. When used, "destination" is not allowed.
- Type:
array
- load_balancer
- Load balancer configuration for given "split" or "destination"
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.TrafficRoute.LoadBalancer
- This schema accepts additional properties.
- Properties
- destination
- One destination that the traffic will be redirected to. When used, "split" is not allowed.
- Type:
object
- This schema accepts additional properties.
- Properties
- http
- Configuration of HTTP traffic. Traffic is matched one by one with the order defined in the list. If the request does not match any criteria then "split" or "destination" outside of "http" section is executed.
- Type:
array
- Items
- $ref: #/definitions/kuma.mesh.v1alpha1.TrafficRoute.Http kuma.mesh.v1alpha1.TrafficRoute.Http
- split
## Http
Http defines configuration for HTTP traffic.
Type:
object
This schema accepts additional properties.
Properties
- match
- If request matches against defined criteria then "split" or "destination" is executed.
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.TrafficRoute.Http.Match
- This schema accepts additional properties.
- Properties
- modify
- Modifications to the traffic matched by the match section.
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.TrafficRoute.Http.Modify
- This schema accepts additional properties.
- Properties
- split
- List of destinations with weights assigned to them. When used, "destination" is not allowed.
- Type:
array
- destination
- One destination that the traffic will be redirected to. When used, "split" is not allowed.
- Type:
object
- This schema accepts additional properties.
- Properties kuma.mesh.v1alpha1.TrafficRoute.Http.Match
- match
## Match
Match defines a series of matching criteria to apply modification and reroute the traffic.
Type:
object
This schema accepts additional properties.
Properties
- method
- Method matches method of HTTP request.
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.TrafficRoute.Http.Match.StringMatcher
- This schema accepts additional properties.
- Properties
- path
- Path matches HTTP path.
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.TrafficRoute.Http.Match.StringMatcher
- This schema accepts additional properties.
- Properties
- headers
- Headers match HTTP request headers.
- Type:
object
- This schema accepts additional properties.
- Properties kuma.mesh.v1alpha1.TrafficRoute.Http.Match.StringMatcher
- method
## String Matcher
StringMatcher matches the string value.
Type:
object
This schema accepts additional properties.
Properties
- prefix
- Prefix matches the string against defined prefix.
- Type:
string
- exact
- Exact checks that strings are equal to each other.
- Type:
string
- regex
- Regex checks the string using RE2 syntax. https://github.com/google/re2/wiki/Syntax
- Type:
string
kuma.mesh.v1alpha1.TrafficRoute.Http.Modify
- prefix
## Modify
Modify defines modifications of matched HTTP messages.
Type:
object
This schema accepts additional properties.
Properties
- path
- Path modifications.
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.TrafficRoute.Http.Modify.Path
- This schema accepts additional properties.
- Properties
- host
- Host modifications.
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.TrafficRoute.Http.Modify.Host
- This schema accepts additional properties.
- Properties
- requestHeaders
- Request headers modifications.
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.TrafficRoute.Http.Modify.Headers
- This schema accepts additional properties.
- Properties
- responseHeaders
- Response headers modifications.
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.TrafficRoute.Http.Modify.Headers
- This schema accepts additional properties.
- Properties kuma.mesh.v1alpha1.TrafficRoute.Http.Modify.Headers
- path
## Headers
Headers defines modification of HTTP headers.
Type:
object
This schema accepts additional properties.
Properties
- add
- List of add header operations.
- Type:
array
- remove
- List of remove header operations.
- Type:
array
- Items
- $ref: #/definitions/kuma.mesh.v1alpha1.TrafficRoute.Http.Modify.Headers.Remove kuma.mesh.v1alpha1.TrafficRoute.Http.Modify.Headers.Add
- add
## Add
Add defines operation of adding new HTTP header.
Type:
object
This schema accepts additional properties.
Properties
- name
- Name of the header.
- Type:
string
- value
- Value of the header.
- Type:
string
- append
- If true, it appends the value if there is already a value. Otherwise, value of existing header will be replaced.
- Type:
boolean
kuma.mesh.v1alpha1.TrafficRoute.Http.Modify.Headers.Remove
- name
## Remove
Remove defines operation of removing an HTTP header.
Type:
object
This schema accepts additional properties.
Properties
- name
- Name of the header to remove.
- Type:
string
kuma.mesh.v1alpha1.TrafficRoute.Http.Modify.Host
- name
## Host
Host defines modification of the HTTP Host header
Type:
object
This schema accepts additional properties.
Properties
- value
- Value replaces the host header with given value.
- Type:
string
- fromPath
- FromPath replaces the host header from path using regex.
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.TrafficRoute.Http.Modify.RegexReplace
- This schema accepts additional properties.
- Properties kuma.mesh.v1alpha1.TrafficRoute.Http.Modify.Path
- value
## Path
Path defines modification of path of the HTTP request.
Type:
object
This schema accepts additional properties.
Properties
- rewritePrefix
- RewritePrefix rewrites previously matched prefix in match section.
- Type:
string
- regex
- Regex rewrites prefix using regex with substitution.
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.TrafficRoute.Http.Modify.RegexReplace
- This schema accepts additional properties.
- Properties kuma.mesh.v1alpha1.TrafficRoute.Http.Modify.RegexReplace
- rewritePrefix
## Regex Replace
RegexReplace defines a way to match string using regex and build a new one using substitution section.
Type:
object
This schema accepts additional properties.
Properties
- pattern
- Pattern of the regex using RE2 syntax. https://github.com/google/re2/wiki/Syntax
- Type:
string
- substitution
- Substitution using regex groups. E.g. use \1 as a first matched group.
- Type:
string
kuma.mesh.v1alpha1.TrafficRoute.LoadBalancer
- pattern
## Load Balancer
LoadBalancer defines the load balancing policy and configuration.
Type:
object
This schema accepts additional properties.
Properties
- round_robin
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.TrafficRoute.LoadBalancer.RoundRobin
- This schema accepts additional properties.
- Properties
- Type:
- least_request
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.TrafficRoute.LoadBalancer.LeastRequest
- This schema accepts additional properties.
- Properties
- Type:
- ring_hash
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.TrafficRoute.LoadBalancer.RingHash
- This schema accepts additional properties.
- Properties
- Type:
- random
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.TrafficRoute.LoadBalancer.Random
- This schema accepts additional properties.
- Properties
- Type:
- maglev
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.TrafficRoute.LoadBalancer.Maglev
- This schema accepts additional properties.
- Properties kuma.mesh.v1alpha1.TrafficRoute.LoadBalancer.LeastRequest
- Type:
- round_robin
## Least Request
LeastRequest uses different algorithms depending on whether hosts have the same or different weights.
Type:
object
This schema accepts additional properties.
Properties
- choice_count
- The number of random healthy hosts from which the host with the fewest active requests will be chosen. Defaults to 2 so that we perform two-choice selection if the field is not set.
- Type:
integer
kuma.mesh.v1alpha1.TrafficRoute.LoadBalancer.Maglev
- choice_count
## Maglev
Maglev implements consistent hashing to upstream hosts.
Type:
object
This schema accepts additional properties.
Properties kuma.mesh.v1alpha1.TrafficRoute.LoadBalancer.Random
## Random
Random selects a random available host.
Type:
object
This schema accepts additional properties.
Properties kuma.mesh.v1alpha1.TrafficRoute.LoadBalancer.RingHash
## Ring Hash
RingHash implements consistent hashing to upstream hosts.
Type:
object
This schema accepts additional properties.
Properties
- hash_function
- The hash function used to hash hosts onto the ketama ring. The value defaults to 'XX_HASH'.
- Type:
string
- minringsize
- Minimum hash ring size.
- Type:
string
- maxringsize
- Maximum hash ring size.
- Type:
string
kuma.mesh.v1alpha1.TrafficRoute.LoadBalancer.RoundRobin
- hash_function
## Round Robin
RoundRobin is a simple policy in which each available upstream host is selected in round robin order.
Type:
object
This schema accepts additional properties.
Properties kuma.mesh.v1alpha1.TrafficRoute.Split
## Split
Split defines a destination with a weight assigned to it.
Type:
object
This schema accepts additional properties.
Properties
- weight
- Weight assigned to that destination. Weights are not percentages. For example two destinations with weights the same weight "1" will receive both same amount of the traffic. 0 means that the destination will be ignored.
- Type:
integer
- destination
- Selector to match individual endpoints that comprise that destination. Notice that an endpoint can be either inside or outside the mesh. In the former case an endpoint corresponds to a data plane proxy, in the latter case an endpoint is an External Service.
- Type:
object
- This schema accepts additional properties.
- Properties
- weight
Generated with json-schema-md-doc Fri May 09 2025 20:15:14 GMT+0000 (Coordinated Universal Time)