Ingresses
By default, this is disabled.
When enabled, sync all Ingress resources from the virtual cluster to the host cluster. Use this option to make a virtual cluster service available via a hostname/domain without having to configure DNS for each virtual cluster. You do, however, need to install a separate Ingress controller for each vCluster instance.
When enabled, vCluster automatically tries to detect the supported ingress version (networking.k8s.io/v1
or networking.k8s.io/v1beta1
).
Sync Ingresses from the virtual to host cluster​
sync:
toHost:
ingresses:
enabled: true
Translate Patches​
This feature is available in the vCluster Pro tier. Contact us for more details and to start a trial.
You can modify the sync behaviour with translate patches that target specific paths. Currently there is 2 different kinds of patches supported.
You can use *
in paths to select all entries of an array or object, e.g. spec.containers[*].name
or spec.containers[*].volumeMounts[*]
. vCluster will then just call the patch multiple times.
JavaScript Expressions​
These are powerful JavaScript ES6 compatible expressions to change a field while syncing. You can define how it should changed when syncing from the vCluster into the host cluster or when syncing from the host cluster into the virtual cluster. To change the path spec.rules[*].host you can do:
sync:
toHost:
ingresses:
enabled: true
translate:
- path: spec.rules[*].host
expression: '"my-prefix-"+value'
# optional reverseExpression to reverse the change from the host cluster
# reverseExpression: 'value.slice("my-prefix".length)'
There is also a variable called context
besides value
that can be used to access vCluster specific data:
context.vcluster.name
: Name of the vClustercontext.vcluster.namespace
: Namespace of the vClustercontext.vcluster.config
: Config of the vCluster, basicallyvcluster.yaml
merged with the defaultscontext.hostObject
: Host object (can be null if not available)context.virtualObject
: Virtual object (can be null if not available)context.path
: The matched path on the object, useful when using wildcard path selectors (*)
Reference patches​
Tell vCluster that this specific field points to a different resource that should get rewritten. vCluster will also automatically import the referenced resource if it can find it in the host cluster. For example:
sync:
toHost:
ingresses:
enabled: true
translate:
- path: metadata.annotations["my-secret-ref"]
reference:
apiVersion: v1
kind: Secret
This will tell vCluster to translate the path metadata.annotations["my-secret-ref"]
as it points to a secret. If the secret is created in the host cluster, vCluster will automatically import it.
With multi-namespace-mode you only need to rewrite references that include a namespace. You can use the namespacePath
option to specify the path of the namespace of the reference.
Config reference​
ingresses
required object pro​
Ingresses defines if ingresses created within the virtual cluster should get synced to the host cluster.
ingresses
required object pro​enabled
required boolean false pro​
Enabled defines if this option should be enabled.
enabled
required boolean false pro​translate
required object[] pro​
Translate the patch according to the given patches.
translate
required object[] pro​path
required string pro​
Path is the path within the patch to target. If the path is not found within the patch, the patch is not applied.
path
required string pro​expression
required string pro​
Expression transforms the value according to the given JavaScript expression.
expression
required string pro​reverseExpression
required string pro​
ReverseExpression transforms the value according to the given JavaScript expression.
reverseExpression
required string pro​reference
required object pro​
Reference treats the path value as a reference to another object and will rewrite it based on the chosen mode
automatically. In single-namespace mode this will translate the name to "vxxxxxxxxx" to avoid conflicts with
other names, in multi-namespace mode this will not translate the name.
reference
required object pro​apiVersion
required string pro​
APIVersion is the apiVersion of the referenced object.
apiVersion
required string pro​apiVersionPath
required string pro​
APIVersionPath is optional relative path to use to determine the kind. If APIVersionPath is not found, will fallback to apiVersion.
apiVersionPath
required string pro​kind
required string pro​
Kind is the kind of the referenced object.
kind
required string pro​kindPath
required string pro​
KindPath is the optional relative path to use to determine the kind. If KindPath is not found, will fallback to kind.
kindPath
required string pro​namePath
required string pro​
NamePath is the optional relative path to the reference name within the object.
namePath
required string pro​namespacePath
required string pro​
NamespacePath is the optional relative path to the reference namespace within the object. If omitted or not found, namespacePath equals to the
metadata.namespace path of the object.
namespacePath
required string pro​labels
required object pro​
Labels treats the path value as a labels selector.
labels
required object pro​