Proxy Template
The proxy template provides configuration options for low-level Envoy resources that Kuma policies do not directly expose.
If you need features that aren’t available as a Kuma policy, open a new issue on GitHub so they can be added to the Kuma roadmap.
A ProxyTemplate
policy can provide custom definitions of:
The custom definitions either complement or replace the resources that Kuma generates automatically.
Usage
Kuma uses the following default ProxyTemplate
resource for every data plane proxy (kuma-dp
) that is added to a Mesh
. This resource looks like:
In these examples, note:
- The
selectors
object specifies the data plane proxies that are targeted by theProxyTemplate
resource. Values are provided as Kuma tags. - The
imports
object specifies the reusable configuration that Kuma generates automatically. Kuma then extends the imports object with the custom configuration you specify. Possible values: default-proxy
- the default configuration for non-ingress data planes.ingress-proxy
- the default configuration for zone-ingress proxy.gateway-proxy
- the default configuration for mesh gateway.egress-proxy
- the default configuration for zone-egress proxy.
You can choose more than one import object.
Modifications
To customize the configuration of data plane proxies, you can combine modifications of any type in one ProxyTemplate. Each modification consists of the following sections:
operation
- operation applied to the generated config (e.g.add
,remove
,patch
).match
- some operations can be applied on matched resources (e.g. remove only resource of given name, patch all outbound resources).value
- raw Envoy xDS configuration. Can be partial if operation ispatch
.
Origin
All resources generated by Kuma are marked with the origin
value, so you can match resources. Examples: add new filters but only on inbound listeners, set timeouts on outbound clusters.
Available origins:
inbound
- resources generated for incoming traffic.outbound
- resources generated for outgoing traffic.transparent
- resources generated for transparent proxy functionality.prometheus
- resources generated when Prometheus metrics are enabled.direct-access
- resources generated for Direct Access functionality.ingress
- resources generated for Zone Ingress.gateway
- resources generated for MeshGateway
Cluster
Modifications that are applied on Clusters resources.
Available operations:
add
- add a new cluster or replace existing if the name is the same.remove
- remove a cluster.patch
- patch a part of cluster definition.
Available matchers:
name
- name of the cluster.origin
- origin of the cluster.
Listener
Modifications that are applied on Listeners resources.
Available operations:
add
- add a new listener or replace existing if the name is the same.remove
- remove a listener.patch
- patch a part of listener definition.
Available matchers:
name
- name of the listener.origin
- origin of the listener.tags
- tags of inbound or outbound listeners. They matchListener.metadata.filterMetadata[io.kuma.tags]
in XDS configuration.
Network Filter
Modifications that are applied on Network Filters that are part of Listeners resource. Modifications are applied on all Filter Chains in the Listener.
Available operations:
addFirst
- add a new filter as a first filter in Filter Chain.addLast
- add a new filter as a last filter in Filter Chain.addAfter
- add a new filter after other filter in Filter Chain that is matched usingmatch
section.addBefore
- add a new filter before other filter in Filter Chain that is matched usingmatch
section.patch
- patch a matched filter in Filter Chain.remove
- remove a filter in Filter Chain.
Available matchers:
name
- name of the network filter.listenerName
- name of the listener.listenerTags
- tags of inbound or outbound listeners. They matchListener.metadata.filterMetadata[io.kuma.tags]
in XDS configuration.origin
- origin of the listener.
Example how to change streamIdleTimeout
for MeshGateway
:
HTTP Filter
Modifications that are applied on HTTP Filters that are part of Listeners resource. Modifications that Kuma applies on all HTTP Connection Managers in the Listener.
HTTP Filter modifications can only be applied on services configured as HTTP.
Available operations:
addFirst
- add a new filter as a first filter in HTTP Connection Manager.addLast
- add a new filter as a last filter in HTTP Connection Manager.addAfter
- add a new filter after other filter in HTTP Connection Manager that is matched usingmatch
section.addBefore
- add a new filter before other filter in HTTP Connection Manager that is matched usingmatch
section.patch
- patch a matched filter in HTTP Connection Manager.remove
- remove a filter in HTTP Connection Manager.
Available matchers:
name
- name of the network filterlistenerName
- name of the listenerlistenerTags
- tags of inbound or outbound listeners. They matchListener.metadata.filterMetadata[io.kuma.tags]
in XDS configuration.origin
- origin of the listener
VirtualHost
Modifications that are applied on VirtualHost resources.
VirtualHost modifications can only be applied on services configured as HTTP.
Available operations:
add
- add a new VirtualHost.remove
- remove a VirtualHost.patch
- patch a part of VirtualHost definition.
Available matchers:
name
- name of the VirtualHost.origin
- origin of the VirtualHost.routeConfigurationName
- name of the RouteConfiguration.
How Kuma handles the proxy template
At runtime, whenever kuma-cp
generates the configuration for a given data plane proxies, it will proceed as follows:
- Kuma searches for all the
ProxyTemplates
resources that have been defined in the specifiedMesh
. - It loads in memory the
ProxyTemplates
resources whoseselectors
match either aninbound
or agateway
definition of any data plane proxies accordingly to the Kuma Tags selected. - Every matching
ProxyTemplate
is ranked. TheProxyTemplate
resource with the highest ranking is used to generate the configuration for the specified data plane proxy (or proxies). - If the
ProxyTemplate
resource specifies animports
object, these resources are generated first. - If a
ProxyTemplate
defines amodification
object, all modifications are applied, one by one in the order defined inmodification
section.
Lua filter example
For a more complete example, explore this Lua filter that adds the new x-header: test
header to all outgoing HTTP requests to service offers
.
Matching
ProxyTemplate
is a Dataplane policy. You can use all the tags in the selectors
section.
Builtin Gateway support
The Proxy Template policy supports a new gateway-proxy
configuration name that can be imported.
This generates the Envoy resources for a Kuma Gateway proxy.
The origin name for matching template modifications is gateway
.
Schema
$schema: http://json-schema.org/draft-04/schema#
$ref: #/definitions/ProxyTemplate
definitions
ProxyTemplate
## Proxy Template
ProxyTemplate defines the desired state of ProxyTemplate
Type:
object
This schema accepts additional properties.
Properties
- selectors
- List of Dataplane selectors.
- Type:
array
- Items
- $ref: #/definitions/kuma.mesh.v1alpha1.Selector
- conf
- Configuration for ProxyTemplate
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.ProxyTemplate.Conf
- This schema accepts additional properties.
- Properties kuma.mesh.v1alpha1.ProxyTemplate.Conf
- selectors
## Conf
Type:
object
This schema accepts additional properties.
Properties
- imports
- List of imported profiles. +optional
- Type:
array
- Items
- Type:
string
- resources
- List of raw xDS resources. +optional
- Type:
array
- modifications
- List of config modifications
- Type:
array
- Items
- $ref: #/definitions/kuma.mesh.v1alpha1.ProxyTemplate.Modifications kuma.mesh.v1alpha1.ProxyTemplate.Modifications
- imports
## Modifications
Modifications to xDS config generated by Proxy Template
Type:
object
This schema accepts additional properties.
Properties
- cluster
- Cluster modification
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.ProxyTemplate.Modifications.Cluster
- This schema accepts additional properties.
- Properties
- listener
- Listener modification
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.ProxyTemplate.Modifications.Listener
- This schema accepts additional properties.
- Properties
- networkFilter
- Network Filter modification
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.ProxyTemplate.Modifications.NetworkFilter
- This schema accepts additional properties.
- Properties
- httpFilter
- HTTP Filter modification
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.ProxyTemplate.Modifications.HttpFilter
- This schema accepts additional properties.
- Properties
- virtualHost
- Virtual Host modifications
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.ProxyTemplate.Modifications.VirtualHost
- This schema accepts additional properties.
- Properties kuma.mesh.v1alpha1.ProxyTemplate.Modifications.Cluster
- cluster
## Cluster
Cluster defines modifications to generated clusters
Type:
object
This schema accepts additional properties.
Properties
- match
- Only clusters that match will be modified
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.ProxyTemplate.Modifications.Cluster.Match
- This schema accepts additional properties.
- Properties
- operation
- Operation to apply on a cluster (add, remove, patch)
- Type:
string
- value
- xDS cluster
- Type:
string
kuma.mesh.v1alpha1.ProxyTemplate.Modifications.Cluster.Match
- match
## Match
Match defines match for cluster
Type:
object
This schema accepts additional properties.
Properties
- origin
- Origin of the resource generation. (inbound, outbound, prometheus, transparent, ingress)
- Type:
string
- name
- Name of the cluster to match
- Type:
string
kuma.mesh.v1alpha1.ProxyTemplate.Modifications.HttpFilter
- origin
## Http Filter
HttpFilter defines modifications to generated HTTP filters
Type:
object
This schema accepts additional properties.
Properties
- match
- Only HTTP filters that match will be modified
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.ProxyTemplate.Modifications.HttpFilter.Match
- This schema accepts additional properties.
- Properties
- operation
- Operation to apply on network filter (addFirst, addLast, addBefore, addAfter, remove, patch)
- Type:
string
- value
- xDS HTTP filter
- Type:
string
kuma.mesh.v1alpha1.ProxyTemplate.Modifications.HttpFilter.Match
- match
## Match
Match defines match for http filter
Type:
object
This schema accepts additional properties.
Properties
- origin
- Origin of the resource generation. (inbound, outbound, prometheus, transparent, ingress)
- Type:
string
- name
- Name of the network filter
- Type:
string
- listenerName
- Name of the listener that http filter modifications will be applied to
- Type:
string
- listenerTags
- ListenerTags available in Listener#Metadata#FilterMetadata[io.kuma.tags]
- Type:
object
- This schema accepts additional properties.
- Properties kuma.mesh.v1alpha1.ProxyTemplate.Modifications.Listener
- origin
## Listener
Listener defines modification to generated listeners
Type:
object
This schema accepts additional properties.
Properties
- match
- Only listeners that match will be modified
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.ProxyTemplate.Modifications.Listener.Match
- This schema accepts additional properties.
- Properties
- operation
- Operation to apply on a listener (add, remove, patch)
- Type:
string
- value
- xDS listener
- Type:
string
kuma.mesh.v1alpha1.ProxyTemplate.Modifications.Listener.Match
- match
## Match
Match defines match for listener
Type:
object
This schema accepts additional properties.
Properties
- origin
- Origin of the resource generation. (inbound, outbound, prometheus, transparent, ingress)
- Type:
string
- name
- Name of the listener to match
- Type:
string
- tags
- Tags available in Listener#Metadata#FilterMetadata[io.kuma.tags]
- Type:
object
- This schema accepts additional properties.
- Properties kuma.mesh.v1alpha1.ProxyTemplate.Modifications.NetworkFilter
- origin
## Network Filter
Listener defines modification to generated network filters
Type:
object
This schema accepts additional properties.
Properties
- match
- Only network filters that match will be modified
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.ProxyTemplate.Modifications.NetworkFilter.Match
- This schema accepts additional properties.
- Properties
- operation
- Operation to apply on network filter (addFirst, addLast, addBefore, addAfter, remove, patch)
- Type:
string
- value
- xDS network filter
- Type:
string
kuma.mesh.v1alpha1.ProxyTemplate.Modifications.NetworkFilter.Match
- match
## Match
Match defines match for network filter
Type:
object
This schema accepts additional properties.
Properties
- origin
- Origin of the resource generation. (inbound, outbound, prometheus, transparent, ingress)
- Type:
string
- name
- Name of the network filter
- Type:
string
- listenerName
- Name of the listener that network filter modifications will be applied to
- Type:
string
- listenerTags
- ListenerTags available in Listener#Metadata#FilterMetadata[io.kuma.tags]
- Type:
object
- This schema accepts additional properties.
- Properties kuma.mesh.v1alpha1.ProxyTemplate.Modifications.VirtualHost
- origin
## Virtual Host
VirtualHost defines modification to generated virtual hosts
Type:
object
This schema accepts additional properties.
Properties
- match
- Only virtual hosts that match will be modified
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.ProxyTemplate.Modifications.VirtualHost.Match
- This schema accepts additional properties.
- Properties
- operation
- Operation to apply on a virtual hosts (add, remove, patch)
- Type:
string
- value
- xDS virtual host
- Type:
string
kuma.mesh.v1alpha1.ProxyTemplate.Modifications.VirtualHost.Match
- match
## Match
Match defines match for virtual host
Type:
object
This schema accepts additional properties.
Properties
- origin
- Origin of the resource generation. (inbound, outbound, prometheus, transparent, ingress)
- Type:
string
- name
- Name of the virtual host to match
- Type:
string
- routeConfigurationName
- Name of the route configuration
- Type:
string
kuma.mesh.v1alpha1.ProxyTemplateRawResource
- origin
## Proxy Template Raw Resource
Type:
object
This schema accepts additional properties.
Properties
- name
- The resource's name, to distinguish it from others of the same type of resource.
- Type:
string
- version
- The resource level version. It allows xDS to track the state of individual resources.
- Type:
string
- resource
- xDS resource.
- Type:
string
kuma.mesh.v1alpha1.Selector
- name
## 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
- match
Generated with json-schema-md-doc Fri Apr 04 2025 03:57:58 GMT+0000 (Coordinated Universal Time)