Skip to main content
Version: 0.9.x

Clusters

Each Kubernetes cluster managed by Service Bridge should be onboarded first before configurations can be applied to the services in the cluster. Onboarding a cluster is a two step process. First, create a cluster object under the appropriate tenant. Once a cluster object is created, its status field should provide the set of join tokens that will be used by the Service Bridge agent on the cluster to talk to Service Bridge management plane. The second step is to deploy the Service Bridge agent on the cluster with the join tokens and deploy Istio on the cluster. The following example creates a cluster named c1 under the tenant mycompany, indicating that the cluster is deployed on a network "vpc-01" corresponding to the AWS VPC where it resides.

apiVersion: api.tsb.tetrate.io/v2
kind: Cluster
metadata:
name: c1
organization: myorg
labels:
env: uat-demo
spec:
tokenTtl: "1h"
network: vpc-01

Note that configuration profiles such as traffic, security and gateway groups will flow to the Bridge agents in the cluster as long their requested cluster exists in the Service Bridge hierarchy.

Cluster

A Kubernetes cluster managing both pods and VMs.

FieldDescriptionValidation Rule

tokenTtl

google.protobuf.Duration
Lifetime of the tokens. Defaults to 1hr.

network

string
The network (e.g., VPC) where this cluster is present. All clusters within the same network will be assumed to be reachable for the purposes of multi-cluster routing. In addition, networks marked as reachable from one another in SystemSettings will also be used for multi-cluster routing.

tier1Cluster

google.protobuf.BoolValue
Indicates whether this cluster is hosting a tier1 gateway or not. Tier1 clusters cannot host other gateways or workloads. Defaults to false if not specified.

locality

tetrateio.api.tsb.v2.Cluster.Locality
Location information about the cluster which can be used for routing.

trustDomain

string
Trust domain for this cluster, used for multi-cluster routing. It must be unique for every cluster and should match the one configured in the local control plane. This value is optional, and will be updated by the local control plane agents. However, it is recommended to set it, if known, so that multi-cluster routing works without having to wait for the local control planes to update it.

namespaceScope

tetrateio.api.tsb.v2.NamespaceScoping
Configure the default scoping of namespaces in this cluster.

Locality

The region the cluster resides. Used for failover based routing when configured in the workspace or global settings.

FieldDescriptionValidation Rule

region

string
REQUIRED
The geographic location of the cluster.

string = {
  min_len: 1
}

ClusterStatus

The status message for a cluster resource contains the set of join tokens that should be used by Service Bridge's agents on the cluster.

FieldDescriptionValidation Rule

tokens

map<string, string>
Tokens for various agents.

NamespaceScoping

Configure the default scoping of namespaces in this cluster.

FieldDescriptionValidation Rule

scope

tetrateio.api.tsb.v2.NamespaceScoping.Scope
Default scope for namespaces in this cluster (global, local)

exceptions

List of string
Namespaces to be excluded form the default scope. If the scope is set to global, this list will contain namespaces that are considered local. If the scope is set to local, this list will contain namespaces that are considered global.

Scope

NameNumberDescription

GLOBAL

0

Global configures namespaces in this cluster to be considered global. Namespaces that exist in other clusters with the same name will be considered to be the same logical namespace.

LOCAL

1

Configures local scoping for namespaces, so that namespaces with the same name in different clusters will not be considered the same logical namespace.

Port

FieldDescriptionValidation Rule

number

uint32
A valid non-negative integer port number.

name

string
Name assigned to the port.

kubernetesNodePort

uint32
Indicates the node port attached to a physical deployment on a kubernetes cluster.