Careful!
You are browsing documentation for a version of Kuma that is not the latest release.
Configuring your Mesh and multi-tenancy
This resource describes a very important concept in Kuma, and that is the ability of creating multiple isolated service meshes within the same Kuma cluster which in turn make Kuma a very simple and easy project to operate in environments where more than one mesh is required based on security, segmentation or governance requirements.
Typically, we would want to create a Mesh
per line of business, per team, per application or per environment or for any other reason. Typically multiple meshes are being created so that a service mesh can be adopted by an organization with a gradual roll-out that doesn’t require all the teams and their applications to coordinate with each other, or as an extra layer of security and segmentation for our services so that - for example - policies applied to one Mesh
do not affect another Mesh
.
Mesh
is the parent resource of every other resource in Kuma, including:
In order to use Kuma at least one Mesh
must exist, and there is no limit to the number of Meshes that can be created. When a data plane proxy connects to the control plane (kuma-cp
) it specifies to what Mesh
resource it belongs: a data plane proxy can only belong to one Mesh
at a time.
When starting a new Kuma cluster from scratch a default
Mesh is being created automatically.
Besides the ability of being able to create virtual service mesh, a Mesh
resource will also be used for:
-
Mutual TLS, to secure and encrypt our service traffic and assign an identity to the data plane proxies within the Mesh.
- Traffic Metrics
- Zone Egress, to setup if
ZoneEgress
should be used for cross zone and external service communication. - Non-mesh traffic, to setup if
passthrough
mode should be used for the non-mesh traffic.
To support cross-mesh communication an intermediate API Gateway must be used. Kuma checkout Kuma’s builtin gateway to set this up.
Usage
The easiest way to create a Mesh
is to specify its name
. The name of a Mesh must be unique.
We will apply the configuration with kubectl apply -f [..]
.
Creating resources in a Mesh
It is possible to determine to what Mesh
other resources belong to in the following ways.
Data plane proxies
Every time we start a data plane proxy, we need to specify to what Mesh
it belongs, this can be done in the following way:
By using the kuma.io/mesh
annotation in a Deployment
, like:
A Mesh
may span multiple Kubernetes namespaces. Any Kuma resource in the cluster which
specifies a particular Mesh
will be part of that Mesh
.
You can control which data plane proxies are allowed to join the mesh using mesh constraints.
Policies
When creating new Policies we also must specify to what Mesh
they belong. This can be done in the following way:
By using the mesh
property, like:
Kuma consumes all Policies on the cluster and joins each to an individual Mesh
, identified by this property.
Skipping default resource creation
By default, to help users get started we create the following default policies:
If you want to not have these policies be added on creation of the mesh set the configuration: skipCreatingInitialPolicies
:
You can also skip creating the default mesh by setting the control-plane configuration: KUMA_DEFAULTS_SKIP_MESH_CREATION=true
.
All options
$schema: http://json-schema.org/draft-04/schema#
$ref: #/definitions/Mesh
definitions
Mesh
## Mesh
Mesh defines configuration of a single mesh.
Type:
object
This schema accepts additional properties.
Properties
- mtls
- mTLS settings. +optional
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.Mesh.Mtls
- This schema accepts additional properties.
- Properties
- tracing
- Tracing settings. +optional
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.Tracing
- This schema accepts additional properties.
- Properties
- logging
- Logging settings. +optional
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.Logging
- This schema accepts additional properties.
- Properties
- metrics
- Configuration for metrics collected and exposed by dataplanes. Settings defined here become defaults for every dataplane in a given Mesh. Additionally, it is also possible to further customize this configuration for each dataplane individually using Dataplane resource. +optional
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.Metrics
- This schema accepts additional properties.
- Properties
- networking
- Networking settings of the mesh
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.Networking
- This schema accepts additional properties.
- Properties
- routing
- Routing settings of the mesh
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.Routing
- This schema accepts additional properties.
- Properties
- constraints
- Constraints that applies to the mesh and its entities
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.Mesh.Constraints
- This schema accepts additional properties.
- Properties
- skipCreatingInitialPolicies
- List of policies to skip creating by default when the mesh is created. e.g. TrafficPermission, MeshRetry, etc. An '' can be used to skip all policies.*
- Type:
array
- Items
- Type:
string
kuma.mesh.v1alpha1.CertificateAuthorityBackend
- mtls
## Certificate Authority Backend
CertificateAuthorityBackend defines Certificate Authority backend
Type:
object
This schema accepts additional properties.
Properties
- name
- Name of the backend
- Type:
string
- type
- Type of the backend. Has to be one of the loaded plugins (Kuma ships with builtin and provided)
- Type:
string
- dpCert
- Dataplane certificate settings
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.CertificateAuthorityBackend.DpCert
- This schema accepts additional properties.
- Properties
- conf
- Configuration of the backend
- Type:
object
- This schema accepts additional properties.
- Properties
- mode
- #### Mode
- The value is restricted to the following:
- "STRICT"
0
- "PERMISSIVE"
1
- rootChain
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.CertificateAuthorityBackend.RootChain
- This schema accepts additional properties.
- Properties kuma.mesh.v1alpha1.CertificateAuthorityBackend.DpCert
- Type:
- name
## Dp Cert
DpCert defines settings for certificates generated for Dataplanes
Type:
object
This schema accepts additional properties.
Properties
- rotation
- Rotation settings
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.CertificateAuthorityBackend.DpCert.Rotation
- This schema accepts additional properties.
- Properties
- requestTimeout
- Timeout on request to CA for DP certificate generation and retrieval
- Type:
string
- String format must be a "regex"
- The value must match this pattern:
^([0-9]+\.?[0-9]*|\.[0-9]+)s$
kuma.mesh.v1alpha1.CertificateAuthorityBackend.DpCert.Rotation
- rotation
## Rotation
Rotation defines rotation settings for Dataplane certificate
Type:
object
This schema accepts additional properties.
Properties
- expiration
- Time after which generated certificate for Dataplane will expire
- Type:
string
kuma.mesh.v1alpha1.CertificateAuthorityBackend.RootChain
- expiration
## Root Chain
RootChain defines settings related to CA root certificate chain.
Type:
object
This schema accepts additional properties.
Properties
- requestTimeout
- Timeout on request for to CA for root certificate chain. If not specified, defaults to 10s.
- Type:
string
- String format must be a "regex"
- The value must match this pattern:
^([0-9]+\.?[0-9]*|\.[0-9]+)s$
kuma.mesh.v1alpha1.Logging
- requestTimeout
## Logging
Type:
object
This schema accepts additional properties.
Properties
- defaultBackend
- Name of the default backend
- Type:
string
- backends
- List of available logging backends
- Type:
array
- Items
- $ref: #/definitions/kuma.mesh.v1alpha1.LoggingBackend kuma.mesh.v1alpha1.LoggingBackend
- defaultBackend
## Logging Backend
LoggingBackend defines logging backend available to mesh. Backends can be used in TrafficLog rules.
Type:
object
This schema accepts additional properties.
Properties
- name
- Name of the backend, can be then used in Mesh.logging.defaultBackend or in TrafficLogging
- Type:
string
- format
- Format of access logs. Placeholders available on https://www.envoyproxy.io/docs/envoy/latest/configuration/observability/access_log
- Type:
string
- type
- Type of the backend (Kuma ships with 'tcp' and 'file')
- Type:
string
- conf
- Configuration of the backend
- Type:
object
- This schema accepts additional properties.
- Properties kuma.mesh.v1alpha1.Mesh.Constraints
- name
## Constraints
Constraints to apply to the mesh and its entities
Type:
object
This schema accepts additional properties.
Properties
- dataplaneProxy
- DataplaneProxyMembership defines a set of requirements for data plane proxies to be a member of the mesh.
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.Mesh.DataplaneProxyConstraints
- This schema accepts additional properties.
- Properties kuma.mesh.v1alpha1.Mesh.DataplaneProxyConstraints
- dataplaneProxy
## Dataplane Proxy Constraints
Type:
object
This schema accepts additional properties.
Properties
- requirements
- Requirements defines a set of requirements that data plane proxies must fulfill in order to join the mesh. A data plane proxy must fulfill at least one requirement in order to join the mesh. Empty list of allowed requirements means that any proxy that is not explicitly denied can join.
- Type:
array
- restrictions
- Restrictions defines a set of restrictions that data plane proxies cannot fulfill in order to join the mesh. A data plane proxy cannot fulfill any requirement in order to join the mesh. Restrictions takes precedence over requirements.
- Type:
array
- Items
- $ref: #/definitions/kuma.mesh.v1alpha1.Mesh.DataplaneProxyConstraints.Rules kuma.mesh.v1alpha1.Mesh.DataplaneProxyConstraints.Rules
- requirements
## Rules
Rules defines a set of rules for data plane proxies to be member of the mesh.
Type:
object
This schema accepts additional properties.
Properties
- tags
- Tags defines set of required tags. You can specify '' in value to require non empty value of tag*
- Type:
object
- This schema accepts additional properties.
- Properties kuma.mesh.v1alpha1.Mesh.Mtls
- tags
## Mtls
mTLS settings of a Mesh.
Type:
object
This schema accepts additional properties.
Properties
- enabledBackend
- Name of the enabled backend
- Type:
string
- backends
- List of available Certificate Authority backends
- Type:
array
- skipValidation
- If enabled, skips CA validation.
- Type:
boolean
kuma.mesh.v1alpha1.Metrics
- enabledBackend
## Metrics
Metrics defines configuration for metrics that should be collected and exposed by dataplanes.
Type:
object
This schema accepts additional properties.
Properties
- enabledBackend
- Name of the enabled backend
- Type:
string
- backends
- List of available Metrics backends
- Type:
array
- Items
- $ref: #/definitions/kuma.mesh.v1alpha1.MetricsBackend kuma.mesh.v1alpha1.MetricsBackend
- enabledBackend
## Metrics Backend
MetricsBackend defines metric backends
Type:
object
This schema accepts additional properties.
Properties
- name
- Name of the backend, can be then used in Mesh.metrics.enabledBackend
- Type:
string
- type
- Type of the backend (Kuma ships with 'prometheus')
- Type:
string
- conf
- Configuration of the backend
- Type:
object
- This schema accepts additional properties.
- Properties kuma.mesh.v1alpha1.Networking
- name
## Networking
Networking defines the networking configuration of the mesh
Type:
object
This schema accepts additional properties.
Properties
- outbound
- Outbound settings
- Type:
object
- $ref: #/definitions/kuma.mesh.v1alpha1.Networking.Outbound
- This schema accepts additional properties.
- Properties kuma.mesh.v1alpha1.Networking.Outbound
- outbound
## Outbound
Outbound describes the common mesh outbound settings
Type:
object
This schema accepts additional properties.
Properties
- passthrough
- Control the passthrough cluster
- Type:
boolean
kuma.mesh.v1alpha1.Routing
- passthrough
## Routing
Routing defines configuration for the routing in the mesh
Type:
object
This schema accepts additional properties.
Properties
- localityAwareLoadBalancing
- Enable the Locality Aware Load Balancing
- Type:
boolean
- zoneEgress
- Enable routing traffic to services in other zone or external services through ZoneEgress. Default: false
- Type:
boolean
kuma.mesh.v1alpha1.Tracing
- localityAwareLoadBalancing
## Tracing
Tracing defines tracing configuration of the mesh.
Type:
object
This schema accepts additional properties.
Properties
- defaultBackend
- Name of the default backend
- Type:
string
- backends
- List of available tracing backends
- Type:
array
- Items
- $ref: #/definitions/kuma.mesh.v1alpha1.TracingBackend kuma.mesh.v1alpha1.TracingBackend
- defaultBackend
## Tracing Backend
TracingBackend defines tracing backend available to mesh. Backends can be used in TrafficTrace rules.
Type:
object
This schema accepts additional properties.
Properties
- name
- Name of the backend, can be then used in Mesh.tracing.defaultBackend or in TrafficTrace
- Type:
string
- sampling
- Percentage of traces that will be sent to the backend (range 0.0 - 100.0). Empty value defaults to 100.0%
- Type:
number
- type
- Type of the backend (Kuma ships with 'zipkin')
- Type:
string
- conf
- Configuration of the backend
- Type:
object
- This schema accepts additional properties.
- Properties
- name
Generated with json-schema-md-doc Fri Apr 04 2025 06:27:00 GMT+0000 (Coordinated Universal Time)