This version is under construction, please use an official release version

Kubermatic CRDs Reference

Packages

apps.kubermatic.k8c.io/v1

Resource Types

AppNamespaceSpec

AppNamespaceSpec describe the desired state of the namespace where application will be created.

Appears in:

FieldDescription
name stringName is the namespace to deploy the Application into.
Should be a valid lowercase RFC1123 domain name
create booleanCreate defines whether the namespace should be created if it does not exist. Defaults to true
labels object (keys:string, values:string)Labels of the namespace
More info: http://kubernetes.io/docs/user-guide/labels
annotations object (keys:string, values:string)Annotations of the namespace
More info: http://kubernetes.io/docs/user-guide/annotations

Back to top

ApplicationDefinition

ApplicationDefinition is the Schema for the applicationdefinitions API.

Appears in:

FieldDescription
apiVersion stringapps.kubermatic.k8c.io/v1
kind stringApplicationDefinition
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec ApplicationDefinitionSpec

Back to top

ApplicationDefinitionList

ApplicationDefinitionList contains a list of ApplicationDefinition.

FieldDescription
apiVersion stringapps.kubermatic.k8c.io/v1
kind stringApplicationDefinitionList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items ApplicationDefinition array

Back to top

ApplicationDefinitionSpec

ApplicationDefinitionSpec defines the desired state of ApplicationDefinition.

Appears in:

FieldDescription
displayName stringDisplayName is the name for the application that will be displayed in the UI.
description stringDescription of the application. what is its purpose
method TemplateMethodMethod used to install the application
defaultValues RawExtensionDefaultValues specify default values for the UI which are passed to helm templating when creating an application. Comments are not preserved.
Deprecated: use DefaultValuesBlock instead
defaultValuesBlock stringDefaultValuesBlock specifies default values for the UI which are passed to helm templating when creating an application. Comments are preserved.
defaultDeployOptions DeployOptionsDefaultDeployOptions holds the settings specific to the templating method used to deploy the application.
These settings can be overridden in applicationInstallation.
documentationURL stringDocumentationURL holds a link to official documentation of the Application
Alternatively this can be a link to the Readme of a chart in a git repository
sourceURL stringSourceURL holds a link to the official source code mirror or git repository of the application
logo stringLogo of the Application as a base64 encoded svg
logoFormat stringLogoFormat contains logo format of the configured Application. Options are “svg+xml” and “png”
versions ApplicationVersion arrayAvailable version for this application

Back to top

ApplicationInstallation

ApplicationInstallation describes a single installation of an Application.

Appears in:

FieldDescription
apiVersion stringapps.kubermatic.k8c.io/v1
kind stringApplicationInstallation
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec ApplicationInstallationSpec
status ApplicationInstallationStatus

Back to top

ApplicationInstallationCondition

Appears in:

FieldDescription
status ConditionStatusStatus of the condition, one of True, False, Unknown.
lastHeartbeatTime TimeLast time we got an update on a given condition.
lastTransitionTime TimeLast time the condition transit from one status to another.
reason string(brief) reason for the condition’s last transition.
message stringHuman readable message indicating details about last transition.
observedGeneration integerobservedGeneration represents the .metadata.generation that the condition was set based upon.
For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date
with respect to the current state of the instance.

Back to top

ApplicationInstallationConditionType

Underlying type: string

swagger:enum ApplicationInstallationConditionType All condition types must be registered within the AllApplicationInstallationConditionTypes variable.

Appears in:

ApplicationInstallationList

ApplicationInstallationList is a list of ApplicationInstallations.

FieldDescription
apiVersion stringapps.kubermatic.k8c.io/v1
kind stringApplicationInstallationList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items ApplicationInstallation array

Back to top

ApplicationInstallationSpec

Appears in:

FieldDescription
namespace AppNamespaceSpecNamespace describe the desired state of the namespace where application will be created.
applicationRef ApplicationRefApplicationRef is a reference to identify which Application should be deployed
values RawExtensionValues specify values overrides that are passed to helm templating. Comments are not preserved.
Deprecated: Use ValuesBlock instead.
valuesBlock stringValuesBlock specifies values overrides that are passed to helm templating. Comments are preserved.
reconciliationInterval DurationReconciliationInterval is the interval at which to force the reconciliation of the application. By default, Applications are only reconciled
on changes on spec, annotations, or the parent application definition. Meaning that if the user manually deletes the workload
deployed by the application, nothing will happen until the application CR change.

Setting a value greater than zero force reconciliation even if no changes occurred on application CR. Setting a value equal to 0 disables the force reconciliation of the application (default behavior). Setting this too low can cause a heavy load and may disrupt your application workload depending on the template method. | | deployOptions DeployOptions | DeployOptions holds the settings specific to the templating method used to deploy the application. |

Back to top

ApplicationInstallationStatus

ApplicationInstallationStatus denotes status information about an ApplicationInstallation.

Appears in:

FieldDescription
conditions object (keys:ApplicationInstallationConditionType, values:ApplicationInstallationCondition)Conditions contains conditions an installation is in, its primary use case is status signaling between controllers or between controllers and the API
applicationVersion ApplicationVersionApplicationVersion contains information installing / removing application
method TemplateMethodMethod used to install the application
helmRelease HelmReleaseHelmRelease holds the information about the helm release installed by this application. This field is only filled if template method is ‘helm’.
failures integerFailures counts the number of failed installation or updagrade. it is reset on successful reconciliation.

Back to top

ApplicationRef

ApplicationRef describes a KKP-wide, unique reference to an Application.

Appears in:

FieldDescription
name stringName of the Application.
Should be a valid lowercase RFC1123 domain name
version stringVersion of the Application. Must be a valid SemVer version

Back to top

ApplicationSource

Appears in:

FieldDescription
helm HelmSourceInstall Application from a Helm repository
git GitSourceInstall application from a Git repository

Back to top

ApplicationTemplate

Appears in:

FieldDescription
source ApplicationSourceDefined how the source of the application (e.g Helm chart) is retrieved.
Exactly one type of source must be defined.
templateCredentials DependencyCredentialsDependencyCredentials holds the credentials that may be needed for templating the application.

Back to top

ApplicationVersion

Appears in:

FieldDescription
version stringVersion of the application (e.g. v1.2.3)
template ApplicationTemplateTemplate defines how application is installed (source provenance, Method…)

Back to top

DependencyCredentials

Appears in:

FieldDescription
helmCredentials HelmCredentialsHelmCredentials holds the ref to the secret with helm credentials needed to build helm dependencies.
It is not required when using helm as a source, as dependencies are already prepackaged in this case.
It’s either username / password or a registryConfigFile can be defined.

Back to top

DeployOptions

DeployOptions holds the settings specific to the templating method used to deploy the application.

Appears in:

FieldDescription
helm HelmDeployOptions

Back to top

GitAuthMethod

Underlying type: string

Appears in:

GitCredentials

Appears in:

FieldDescription
method GitAuthMethodAuthentication method. Either password or token or ssh-key.
if method is password then username and password must be defined.
if method is token then token must be defined.
if method is ssh-key then ssh-key must be defined.
username SecretKeySelectorUsername holds the ref and key in the secret for the username credential.
The Secret must exist in the namespace where KKP is installed (default is “kubermatic”).
The Secret must be annotated with apps.kubermatic.k8c.io/secret-type: set to helm or git
password SecretKeySelectorPassword holds the ref and key in the secret for the Password credential.
The Secret must exist in the namespace where KKP is installed (default is “kubermatic”).
The Secret must be annotated with apps.kubermatic.k8c.io/secret-type: set to helm or git
token SecretKeySelectorToken holds the ref and key in the secret for the token credential.
The Secret must exist in the namespace where KKP is installed (default is “kubermatic”).
The Secret must be annotated with apps.kubermatic.k8c.io/secret-type: set to helm or git
sshKey SecretKeySelectorSSHKey holds the ref and key in the secret for the SshKey credential.
The Secret must exist in the namespace where KKP is installed (default is “kubermatic”).
The Secret must be annotated with apps.kubermatic.k8c.io/secret-type: set to helm or git

Back to top

GitReference

Appears in:

FieldDescription
branch stringBranch to checkout. Only the last commit of the branch will be checkout in order to reduce the amount of data to download.
commit stringCommit SHA in a Branch to checkout.

It must be used in conjunction with branch field. | | tag string | Tag to check out. It can not be used in conjunction with commit or branch. |

Back to top

GitSource

Appears in:

FieldDescription
remote stringURL to the repository. Can be HTTP(s) (e.g. https://example.com/myrepo) or SSH (e.g. git://example.com[:port]/path/to/repo.git/)
ref GitReferenceGit reference to checkout.
For large repositories, we recommend to either use Tag, Branch or Branch+Commit. This allows a shallow clone, which dramatically speeds up performance
path stringPath of the “source” in the repository. default is repository root
credentials GitCredentialsCredentials are optional and holds the git credentials

Back to top

HelmCredentials

Appears in:

FieldDescription
username SecretKeySelectorUsername holds the ref and key in the secret for the username credential.
The Secret must exist in the namespace where KKP is installed (default is “kubermatic”).
The Secret must be annotated with apps.kubermatic.k8c.io/secret-type: set to helm or git
password SecretKeySelectorPassword holds the ref and key in the secret for the Password credential.
The Secret must exist in the namespace where KKP is installed (default is “kubermatic”).
The Secret must be annotated with apps.kubermatic.k8c.io/secret-type: set to helm or git
registryConfigFile SecretKeySelectorRegistryConfigFile holds the ref and key in the secret for the registry credential file. The value is dockercfg
file that follows the same format rules as ~/.docker/config.json
The The Secret must exist in the namespace where KKP is installed (default is “kubermatic”).
The Secret must be annotated with apps.kubermatic.k8c.io/secret-type: set to helm or git

Back to top

HelmDeployOptions

HelmDeployOptions holds the deployment settings when templating method is Helm.

Appears in:

FieldDescription
wait booleanWait corresponds to the –wait flag on Helm cli.
if set, will wait until all Pods, PVCs, Services, and minimum number of Pods of a Deployment, StatefulSet, or ReplicaSet are in a ready state before marking the release as successful. It will wait for as long as timeout
timeout DurationTimeout corresponds to the –timeout flag on Helm cli.
time to wait for any individual Kubernetes operation.
atomic booleanAtomic corresponds to the –atomic flag on Helm cli.
if set, the installation process deletes the installation on failure; the upgrade process rolls back changes made in case of failed upgrade.
enableDNS booleanEnableDNS corresponds to the –enable-dns flag on Helm cli.
enable DNS lookups when rendering templates.
if you enable this flag, you have to verify that helm template function ‘getHostByName’ is not being used in a chart to disclose any information you do not want to be passed to DNS servers.(c.f. CVE-2023-25165)

Back to top

HelmRelease

Appears in:

FieldDescription
name stringName is the name of the release.
version integerVersion is an int which represents the revision of the release.
info HelmReleaseInfoInfo provides information about a release.

Back to top

HelmReleaseInfo

HelmReleaseInfo describes release information. tech note: we can not use release.Info from Helm because the underlying type used for time has no json tag.

Appears in:

FieldDescription
firstDeployed TimeFirstDeployed is when the release was first deployed.
lastDeployed TimeLastDeployed is when the release was last deployed.
deleted TimeDeleted tracks when this object was deleted.
description stringDescription is human-friendly “log entry” about this release.
status StatusStatus is the current state of the release.
notes stringNotes is the rendered templates/NOTES.txt if available.

Back to top

HelmSource

Appears in:

FieldDescription
url stringURl of the helm repository.
It can be an HTTP(s) repository (e.g. https://localhost/myrepo) or on OCI repository (e.g. oci://localhost:5000/myrepo).
chartName stringName of the Chart.
chartVersion stringVersion of the Chart.
credentials HelmCredentialsCredentials are optional and hold the ref to the secret with helm credentials.
Either username / Password or registryConfigFile can be defined.

Back to top

TemplateMethod

Underlying type: string

Appears in:

kubermatic.k8c.io/v1

Resource Types

AKS

Appears in:

FieldDescription
enabled booleanOnly enabled presets will be available in the KKP dashboard.
datacenter stringIf datacenter is set, this preset is only applicable to the
configured datacenter.
tenantID stringThe Azure Active Directory Tenant used for the user cluster.
subscriptionID stringThe Azure Subscription used for the user cluster.
clientID stringThe service principal used to access Azure.
clientSecret stringThe client secret corresponding to the given service principal.

Back to top

APIServerSettings

Appears in:

FieldDescription
replicas integer
resources ResourceRequirements
tolerations Toleration array
endpointReconcilingDisabled boolean
nodePortRange string

Back to top

AWS

Appears in:

FieldDescription
enabled booleanOnly enabled presets will be available in the KKP dashboard.
datacenter stringIf datacenter is set, this preset is only applicable to the
configured datacenter.
accessKeyID stringThe Access key ID used to authenticate against AWS.
secretAccessKey stringThe Secret Access Key used to authenticate against AWS.
assumeRoleARN stringDefines the ARN for an IAM role that should be assumed when handling resources on AWS. It will be used
to acquire temporary security credentials using an STS AssumeRole API operation whenever creating an AWS session.
assumeRoleExternalID stringAn arbitrary string that may be needed when calling the STS AssumeRole API operation.
Using an external ID can help to prevent the “confused deputy problem”.
vpcID stringAWS VPC to use. Must be configured.
routeTableID stringRoute table to use. This can be configured, but if left empty will be
automatically filled in during reconciliation.
instanceProfileName stringInstance profile to use. This can be configured, but if left empty will be
automatically filled in during reconciliation.
securityGroupID stringSecurity group to use. This can be configured, but if left empty will be
automatically filled in during reconciliation.
roleARN stringARN to use. This can be configured, but if left empty will be
automatically filled in during reconciliation.

Back to top

AWSCloudSpec

AWSCloudSpec specifies access data to Amazon Web Services.

Appears in:

FieldDescription
credentialsReference GlobalSecretKeySelector
accessKeyID stringThe Access key ID used to authenticate against AWS.
secretAccessKey stringThe Secret Access Key used to authenticate against AWS.
assumeRoleARN stringDefines the ARN for an IAM role that should be assumed when handling resources on AWS. It will be used
to acquire temporary security credentials using an STS AssumeRole API operation whenever creating an AWS session.
assumeRoleExternalID stringAn arbitrary string that may be needed when calling the STS AssumeRole API operation.
Using an external ID can help to prevent the “confused deputy problem”.
vpcID string
roleARN stringThe IAM role, the control plane will use. The control plane will perform an assume-role
routeTableID string
instanceProfileName string
securityGroupID string
nodePortsAllowedIPRange stringA CIDR range that will be used to allow access to the node port range in the security group to. Only applies if
the security group is generated by KKP and not preexisting.
If NodePortsAllowedIPRange nor NodePortsAllowedIPRanges is set, the node port range can be accessed from anywhere.
nodePortsAllowedIPRanges NetworkRangesOptional: CIDR ranges that will be used to allow access to the node port range in the security group to. Only applies if
the security group is generated by KKP and not preexisting.
If NodePortsAllowedIPRange nor NodePortsAllowedIPRanges is set, the node port range can be accessed from anywhere.
disableIAMReconciling booleanDisableIAMReconciling is used to disable reconciliation for IAM related configuration. This is useful in air-gapped
setups where access to IAM service is not possible.

Back to top

Addon

Addon specifies a cluster addon. Addons can be installed into user clusters to provide additional manifests for CNIs, CSIs or other applications, which makes addons a necessary component to create functioning user clusters. Addon objects must be created inside cluster namespaces.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringAddon
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec AddonSpecSpec describes the desired addon state.
status AddonStatusStatus contains information about the reconciliation status.

Back to top

AddonCondition

Appears in:

FieldDescription
status ConditionStatusStatus of the condition, one of True, False, Unknown.
lastHeartbeatTime TimeLast time we got an update on a given condition.
lastTransitionTime TimeLast time the condition transitioned from one status to another.

Back to top

AddonConditionType

Underlying type: string

Appears in:

AddonConfig

AddonConfig specifies addon configuration. Addons can be installed without a matching AddonConfig, but they will be missing a logo, description and the potentially necessary form fields in the KKP dashboard to make the addon comfortable to use.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringAddonConfig
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec AddonConfigSpecSpec describes the configuration of an addon.

Back to top

AddonConfigList

AddonConfigList is a list of addon configs.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringAddonConfigList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items AddonConfig arrayItems refers to the list of AddonConfig objects.

Back to top

AddonConfigSpec

AddonConfigSpec specifies configuration of addon.

Appears in:

FieldDescription
shortDescription stringShortDescription of the configured addon that contains more detailed information about the addon,
it will be displayed in the addon details view in the UI
description stringDescription of the configured addon, it will be displayed in the addon overview in the UI
logo stringLogo of the configured addon, encoded in base64
logoFormat stringLogoFormat contains logo format of the configured addon, i.e. svg+xml
formSpec AddonFormControl arrayControls that can be set for configured addon

Back to top

AddonFormControl

AddonFormControl specifies addon form control.

Appears in:

FieldDescription
displayName stringDisplayName is visible in the UI
internalName stringInternalName is used internally to save in the addon object
helpText stringHelpText is visible in the UI next to the control
required booleanRequired indicates if the control has to be set
type stringType of displayed control

Back to top

AddonList

AddonList is a list of addons.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringAddonList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items Addon arrayItems refers to the list of the cluster addons.

Back to top

AddonPhase

Underlying type: string

Appears in:

AddonSpec

AddonSpec specifies details of an addon.

Appears in:

FieldDescription
name stringName defines the name of the addon to install
cluster ObjectReferenceCluster is the reference to the cluster the addon should be installed in
variables RawExtensionVariables is free form data to use for parsing the manifest templates
requiredResourceTypes GroupVersionKind arrayRequiredResourceTypes allows to indicate that this addon needs some resource type before it
can be installed. This can be used to indicate that a specific CRD and/or extension
apiserver must be installed before this addon can be installed. The addon will not
be installed until that resource is served.
isDefault booleanIsDefault indicates whether the addon is installed because it was configured in
the default addon section in the KubermaticConfiguration. User-installed addons
must not set this field to true, as extra default Addon objects (that are not in
the KubermaticConfiguration) will be garbage-collected.

Back to top

AddonStatus

AddonStatus contains information about the reconciliation status.

Appears in:

FieldDescription
phase AddonPhasePhase is a description of the current addon status, summarizing the various conditions.
This field is for informational purpose only and no logic should be tied to the phase.
conditions object (keys:AddonConditionType, values:AddonCondition)

Back to top

AdmissionPlugin

AdmissionPlugin is the type representing a AdmissionPlugin.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringAdmissionPlugin
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec AdmissionPluginSpecSpec describes an admission plugin name and in which k8s version it is supported.

Back to top

AdmissionPluginList

AdmissionPluginList is the type representing a AdmissionPluginList.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringAdmissionPluginList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items AdmissionPlugin arrayItems refers to the list of Admission Plugins

Back to top

AdmissionPluginSpec

AdmissionPluginSpec specifies admission plugin name and from which k8s version is supported.

Appears in:

FieldDescription
pluginName string
fromVersion SemverFromVersion flag can be empty. It means the plugin fit to all k8s versions

Back to top

Alertmanager

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringAlertmanager
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec AlertmanagerSpecSpec describes the configuration of the Alertmanager.
status AlertmanagerStatusStatus stores status information about the Alertmanager.

Back to top

AlertmanagerConfigurationStatus

AlertmanagerConfigurationStatus stores status information about the AlertManager configuration.

Appears in:

FieldDescription
lastUpdated TimeLastUpdated stores the last successful time when the configuration was successfully applied
status ConditionStatusStatus of whether the configuration was applied, one of True, False
errorMessage stringErrorMessage contains a default error message in case the configuration could not be applied.
Will be reset if the error was resolved and condition becomes True

Back to top

AlertmanagerList

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringAlertmanagerList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items Alertmanager arrayItems refers to the list of Alertmanager objects.

Back to top

AlertmanagerSpec

AlertmanagerSpec describes the configuration of the Alertmanager.

Appears in:

FieldDescription
configSecret LocalObjectReferenceConfigSecret refers to the Secret in the same namespace as the Alertmanager object,
which contains configuration for this Alertmanager.

Back to top

AlertmanagerStatus

AlertmanagerStatus stores status information about the AlertManager.

Appears in:

FieldDescription
configStatus AlertmanagerConfigurationStatusConfigStatus stores status information about the AlertManager configuration.

Back to top

Alibaba

Appears in:

FieldDescription
enabled booleanOnly enabled presets will be available in the KKP dashboard.
datacenter stringIf datacenter is set, this preset is only applicable to the
configured datacenter.
accessKeyID stringThe Access Key ID used to authenticate against Alibaba.
accessKeySecret stringThe Access Key Secret used to authenticate against Alibaba.

Back to top

AlibabaCloudSpec

AlibabaCloudSpec specifies the access data to Alibaba.

Appears in:

FieldDescription
credentialsReference GlobalSecretKeySelector
accessKeyID stringThe Access Key ID used to authenticate against Alibaba.
accessKeySecret stringThe Access Key Secret used to authenticate against Alibaba.

Back to top

AllowedRegistry

AllowedRegistry is the object representing an allowed registry.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringAllowedRegistry
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec AllowedRegistrySpecSpec describes the desired state for an allowed registry.

Back to top

AllowedRegistryList

AllowedRegistryList specifies a list of allowed registries.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringAllowedRegistryList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items AllowedRegistry arrayItems refers to the list of the allowed registries.

Back to top

AllowedRegistrySpec

AllowedRegistrySpec specifies the data for allowed registry spec.

Appears in:

FieldDescription
registryPrefix stringRegistryPrefix contains the prefix of the registry which will be allowed. User clusters will be able to deploy
only images which are prefixed with one of the allowed image registry prefixes.

Back to top

Anexia

Appears in:

FieldDescription
enabled booleanOnly enabled presets will be available in the KKP dashboard.
datacenter stringIf datacenter is set, this preset is only applicable to the
configured datacenter.
token stringToken is used to authenticate with the Anexia API.

Back to top

AnexiaCloudSpec

AnexiaCloudSpec specifies the access data to Anexia.

Appears in:

FieldDescription
credentialsReference GlobalSecretKeySelector
token stringToken is used to authenticate with the Anexia API.

Back to top

AntiAffinityType

Underlying type: string

AntiAffinityType is the type of anti-affinity that should be used. Can be “preferred” or “required”.

Appears in:

ApplicationSettings

Appears in:

AuditLoggingSettings

AuditLoggingSettings configures audit logging functionality.

Appears in:

FieldDescription
enabled booleanEnabled will enable or disable audit logging.
policyPreset AuditPolicyPresetOptional: PolicyPreset can be set to utilize a pre-defined set of audit policy rules.
sidecar AuditSidecarSettingsOptional: Configures the fluent-bit sidecar deployed alongside kube-apiserver.

Back to top

AuditPolicyPreset

Underlying type: string

AuditPolicyPreset refers to a pre-defined set of audit policy rules. Supported values are metadata, recommended and minimal. See KKP documentation for what each policy preset includes.

Appears in:

AuditSidecarConfiguration

AuditSidecarConfiguration defines custom configuration for the fluent-bit sidecar deployed with a kube-apiserver. Also see https://docs.fluentbit.io/manual/v/1.8/administration/configuring-fluent-bit/configuration-file.

Appears in:

FieldDescription
service object (keys:string, values:string)
filters object array
outputs object array

Back to top

AuditSidecarSettings

Appears in:

FieldDescription
resources ResourceRequirements
config AuditSidecarConfiguration

Back to top

Azure

Appears in:

FieldDescription
enabled booleanOnly enabled presets will be available in the KKP dashboard.
datacenter stringIf datacenter is set, this preset is only applicable to the
configured datacenter.
tenantID stringThe Azure Active Directory Tenant used for the user cluster.
subscriptionID stringThe Azure Subscription used for the user cluster.
clientID stringThe service principal used to access Azure.
clientSecret stringThe client secret corresponding to the given service principal.
resourceGroup stringThe resource group that will be used to look up and create resources for the cluster in.
If set to empty string at cluster creation, a new resource group will be created and this field will be updated to
the generated resource group’s name.
vnetResourceGroup stringOptional: Defines a second resource group that will be used for VNet related resources instead.
If left empty, NO additional resource group will be created and all VNet related resources use the resource group defined by resourceGroup.
vnet stringThe name of the VNet resource used for setting up networking in.
If set to empty string at cluster creation, a new VNet will be created and this field will be updated to
the generated VNet’s name.
subnet stringThe name of a subnet in the VNet referenced by vnet.
If set to empty string at cluster creation, a new subnet will be created and this field will be updated to
the generated subnet’s name. If no VNet is defined at cluster creation, this field should be empty as well.
routeTable stringThe name of a route table associated with the subnet referenced by subnet.
If set to empty string at cluster creation, a new route table will be created and this field will be updated to
the generated route table’s name. If no subnet is defined at cluster creation, this field should be empty as well.
securityGroup stringThe name of a security group associated with the subnet referenced by subnet.
If set to empty string at cluster creation, a new security group will be created and this field will be updated to
the generated security group’s name. If no subnet is defined at cluster creation, this field should be empty as well.
loadBalancerSKU LBSKULoadBalancerSKU sets the LB type that will be used for the Azure cluster, possible values are “basic” and “standard”, if empty, “standard” will be used

Back to top

AzureCloudSpec

AzureCloudSpec defines cloud resource references for Microsoft Azure.

Appears in:

FieldDescription
credentialsReference GlobalSecretKeySelectorCredentialsReference allows referencing a Secret resource instead of passing secret data in this spec.
tenantID stringThe Azure Active Directory Tenant used for this cluster.
Can be read from credentialsReference instead.
subscriptionID stringThe Azure Subscription used for this cluster.
Can be read from credentialsReference instead.
clientID stringThe service principal used to access Azure.
Can be read from credentialsReference instead.
clientSecret stringThe client secret corresponding to the given service principal.
Can be read from credentialsReference instead.
resourceGroup stringThe resource group that will be used to look up and create resources for the cluster in.
If set to empty string at cluster creation, a new resource group will be created and this field will be updated to
the generated resource group’s name.
vnetResourceGroup stringOptional: Defines a second resource group that will be used for VNet related resources instead.
If left empty, NO additional resource group will be created and all VNet related resources use the resource group defined by resourceGroup.
vnet stringThe name of the VNet resource used for setting up networking in.
If set to empty string at cluster creation, a new VNet will be created and this field will be updated to
the generated VNet’s name.
subnet stringThe name of a subnet in the VNet referenced by vnet.
If set to empty string at cluster creation, a new subnet will be created and this field will be updated to
the generated subnet’s name. If no VNet is defined at cluster creation, this field should be empty as well.
routeTable stringThe name of a route table associated with the subnet referenced by subnet.
If set to empty string at cluster creation, a new route table will be created and this field will be updated to
the generated route table’s name. If no subnet is defined at cluster creation, this field should be empty as well.
securityGroup stringThe name of a security group associated with the subnet referenced by subnet.
If set to empty string at cluster creation, a new security group will be created and this field will be updated to
the generated security group’s name. If no subnet is defined at cluster creation, this field should be empty as well.
nodePortsAllowedIPRange stringA CIDR range that will be used to allow access to the node port range in the security group to. Only applies if
the security group is generated by KKP and not preexisting.
If NodePortsAllowedIPRange nor NodePortsAllowedIPRanges is set, the node port range can be accessed from anywhere.
nodePortsAllowedIPRanges NetworkRangesOptional: CIDR ranges that will be used to allow access to the node port range in the security group to. Only applies if
the security group is generated by KKP and not preexisting.
If NodePortsAllowedIPRange nor NodePortsAllowedIPRanges is set, the node port range can be accessed from anywhere.
assignAvailabilitySet booleanOptional: AssignAvailabilitySet determines whether KKP creates and assigns an AvailabilitySet to machines.
Defaults to true internally if not set.
availabilitySet stringAn availability set that will be associated with nodes created for this cluster. If this field is set to empty string
at cluster creation and AssignAvailabilitySet is set to true, a new availability set will be created and this field
will be updated to the generated availability set’s name.
loadBalancerSKU LBSKULoadBalancerSKU sets the LB type that will be used for the Azure cluster, possible values are “basic” and “standard”, if empty, “standard” will be used.

Back to top

BackupConfig

Appears in:

FieldDescription
backupStorageLocation LocalObjectReference

Back to top

BackupDestination

BackupDestination defines the bucket name and endpoint as a backup destination, and holds reference to the credentials secret.

Appears in:

FieldDescription
endpoint stringEndpoint is the API endpoint to use for backup and restore.
bucketName stringBucketName is the bucket name to use for backup and restore.
credentials SecretReferenceCredentials hold the ref to the secret with backup credentials

Back to top

BackupStatus

Appears in:

FieldDescription
scheduledTime TimeScheduledTime will always be set when the BackupStatus is created, so it’ll never be nil
backupName string
jobName string
backupStartTime Time
backupFinishedTime Time
backupPhase BackupStatusPhase
backupMessage string
deleteJobName string
deleteStartTime Time
deleteFinishedTime Time
deletePhase BackupStatusPhase
deleteMessage string

Back to top

BackupStatusPhase

Underlying type: string

Appears in:

BringYourOwnCloudSpec

BringYourOwnCloudSpec specifies access data for a bring your own cluster.

Appears in:

CIDR

Underlying type: string

Appears in:

CNIPluginSettings

CNIPluginSettings contains the spec of the CNI plugin used by the Cluster.

Appears in:

FieldDescription
type CNIPluginTypeType is the CNI plugin type to be used.
version stringVersion defines the CNI plugin version to be used. This varies by chosen CNI plugin type.

Back to top

CNIPluginType

Underlying type: string

CNIPluginType defines the type of CNI plugin installed. Possible values are canal, cilium or none.

Appears in:

CleanupOptions

Appears in:

FieldDescription
enabled booleanEnable checkboxes that allow the user to ask for LoadBalancers and PVCs
to be deleted in order to not leave potentially expensive resources behind.
enforced booleanIf enforced is set to true, the cleanup of LoadBalancers and PVCs is
enforced.

Back to top

CloudSpec

CloudSpec stores configuration options for a given cloud provider. Provider specs are mutually exclusive.

Appears in:

FieldDescription
dc stringDatacenterName states the name of a cloud provider “datacenter” (defined in Seed resources)
this cluster should be deployed into.
providerName stringProviderName is the name of the cloud provider used for this cluster.
This must match the given provider spec (e.g. if the providerName is
“aws”, then the aws field must be set).
digitalocean DigitaloceanCloudSpecDigitalocean defines the configuration data of the DigitalOcean cloud provider.
bringyourown BringYourOwnCloudSpecBringYourOwn defines the configuration data for a Bring Your Own cluster.
edge EdgeCloudSpecEdge defines the configuration data for an edge cluster.
aws AWSCloudSpecAWS defines the configuration data of the Amazon Web Services(AWS) cloud provider.
azure AzureCloudSpecAzure defines the configuration data of the Microsoft Azure cloud.
openstack OpenstackCloudSpecOpenstack defines the configuration data of an OpenStack cloud.
packet PacketCloudSpecPacket defines the configuration data of a Packet cloud.
hetzner HetznerCloudSpecHetzner defines the configuration data of the Hetzner cloud.
vsphere VSphereCloudSpecVSphere defines the configuration data of the vSphere.
gcp GCPCloudSpecGCP defines the configuration data of the Google Cloud Platform(GCP).
kubevirt KubevirtCloudSpecKubevirt defines the configuration data of the KubeVirt.
alibaba AlibabaCloudSpecAlibaba defines the configuration data of the Alibaba.
anexia AnexiaCloudSpecAnexia defines the configuration data of the Anexia.
nutanix NutanixCloudSpecNutanix defines the configuration data of the Nutanix.
vmwareclouddirector VMwareCloudDirectorCloudSpecVMwareCloudDirector defines the configuration data of the VMware Cloud Director.

Back to top

Cluster

Cluster represents a Kubermatic Kubernetes Platform user cluster. Cluster objects exist on Seed clusters and each user cluster consists of a namespace containing the Kubernetes control plane and additional pods (like Prometheus or the machine-controller).

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringCluster
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec ClusterSpecSpec describes the desired cluster state.
status ClusterStatusStatus contains reconciliation information for the cluster.

Back to top

ClusterAddress

ClusterAddress stores access and address information of a cluster.

Appears in:

FieldDescription
url stringURL under which the Apiserver is available
port integerPort is the port the API server listens on
externalName stringExternalName is the DNS name for this cluster
internalURL stringInternalName is the seed cluster internal absolute DNS name to the API server
adminToken stringAdminToken is the token for the kubeconfig, the user can download
ip stringIP is the external IP under which the apiserver is available

Back to top

ClusterBackupStorageLocation

ClusterBackupStorageLocation is a KKP wrapper around Velero BSL spec.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringClusterBackupStorageLocation
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec BackupStorageLocationSpecSpec is a Velero BSL spec
status BackupStorageLocationStatus

Back to top

ClusterBackupStorageLocationList

ClusterBackupStorageLocationList is a list of ClusterBackupStorageLocations.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringClusterBackupStorageLocationList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items ClusterBackupStorageLocation arrayItems is a list of EtcdBackupConfig objects.

Back to top

ClusterCondition

Appears in:

FieldDescription
status ConditionStatusStatus of the condition, one of True, False, Unknown.
kubermaticVersion stringKubermaticVersion current kubermatic version.
lastHeartbeatTime TimeLast time we got an update on a given condition.
lastTransitionTime TimeLast time the condition transit from one status to another.
reason string(brief) reason for the condition’s last transition.
message stringHuman readable message indicating details about last transition.

Back to top

ClusterConditionType

Underlying type: string

ClusterConditionType is used to indicate the type of a cluster condition. For all condition types, the true value must indicate success. All condition types must be registered within the AllClusterConditionTypes variable.

Appears in:

ClusterEncryptionPhase

Underlying type: string

Appears in:

ClusterEncryptionStatus

ClusterEncryptionStatus holds status information about the encryption-at-rest feature on the user cluster.

Appears in:

FieldDescription
activeKey stringThe current “primary” key used to encrypt data written to etcd. Secondary keys that can be used for decryption
(but not encryption) might be configured in the ClusterSpec.
encryptedResources string arrayList of resources currently encrypted.
phase ClusterEncryptionPhaseThe current phase of the encryption process. Can be one of Pending, Failed, Active or EncryptionNeeded.
The encryption_controller logic will process the cluster based on the current phase and issue necessary changes
to make sure encryption on the cluster is active and updated with what the ClusterSpec defines.

Back to top

ClusterList

ClusterList specifies a list of user clusters.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringClusterList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items Cluster array

Back to top

ClusterNetworkingConfig

ClusterNetworkingConfig specifies the different networking parameters for a cluster.

Appears in:

FieldDescription
ipFamily IPFamilyOptional: IP family used for cluster networking. Supported values are “”, “IPv4” or “IPv4+IPv6”.
Can be omitted / empty if pods and services network ranges are specified.
In that case it defaults according to the IP families of the provided network ranges.
If neither ipFamily nor pods & services network ranges are specified, defaults to “IPv4”.
services NetworkRangesThe network ranges from which service VIPs are allocated.
It can contain one IPv4 and/or one IPv6 CIDR.
If both address families are specified, the first one defines the primary address family.
pods NetworkRangesThe network ranges from which POD networks are allocated.
It can contain one IPv4 and/or one IPv6 CIDR.
If both address families are specified, the first one defines the primary address family.
nodeCidrMaskSizeIPv4 integerNodeCIDRMaskSizeIPv4 is the mask size used to address the nodes within provided IPv4 Pods CIDR.
It has to be larger than the provided IPv4 Pods CIDR. Defaults to 24.
nodeCidrMaskSizeIPv6 integerNodeCIDRMaskSizeIPv6 is the mask size used to address the nodes within provided IPv6 Pods CIDR.
It has to be larger than the provided IPv6 Pods CIDR. Defaults to 64.
dnsDomain stringDomain name for services.
proxyMode stringProxyMode defines the kube-proxy mode (“ipvs” / “iptables” / “ebpf”).
Defaults to “ipvs”. “ebpf” disables kube-proxy and requires CNI support.
ipvs IPVSConfigurationIPVS defines kube-proxy ipvs configuration options
nodeLocalDNSCacheEnabled booleanNodeLocalDNSCacheEnabled controls whether the NodeLocal DNS Cache feature is enabled.
Defaults to true.
coreDNSReplicas integerCoreDNSReplicas is the number of desired pods of user cluster coredns deployment.
konnectivityEnabled booleanDeprecated: KonnectivityEnabled enables konnectivity for controlplane to node network communication.
As OpenVPN will be removed in the future KKP versions, clusters with konnectivity disabled will not be supported.
All existing clusters with OpenVPN should migrate to the Konnectivity.
tunnelingAgentIP stringTunnelingAgentIP is the address used by the tunneling agents

Back to top

ClusterPhase

Underlying type: string

Appears in:

ClusterSpec

ClusterSpec describes the desired state of a user cluster.

Appears in:

FieldDescription
humanReadableName stringHumanReadableName is the cluster name provided by the user.
version SemverVersion defines the wanted version of the control plane.
cloud CloudSpecCloud contains information regarding the cloud provider that
is responsible for hosting the cluster’s workload.
containerRuntime stringContainerRuntime to use, i.e. docker or containerd. By default containerd will be used.
imagePullSecret SecretReferenceOptional: ImagePullSecret references a secret with container registry credentials. This is passed to the machine-controller which sets the registry credentials on node level.
cniPlugin CNIPluginSettingsOptional: CNIPlugin refers to the spec of the CNI plugin used by the Cluster.
clusterNetwork ClusterNetworkingConfigOptional: ClusterNetwork specifies the different networking parameters for a cluster.
machineNetworks MachineNetworkingConfig arrayOptional: MachineNetworks is the list of the networking parameters used for IPAM.
exposeStrategy ExposeStrategyExposeStrategy is the strategy used to expose a cluster control plane.
apiServerAllowedIPRanges NetworkRangesOptional: APIServerAllowedIPRanges is a list of IP ranges allowed to access the API server.
Applicable only if the expose strategy of the cluster is LoadBalancer.
If not configured, access to the API server is unrestricted.
componentsOverride ComponentSettingsOptional: Component specific overrides that allow customization of control plane components.
oidc OIDCSettingsOptional: OIDC specifies the OIDC configuration parameters for enabling authentication mechanism for the cluster.
features object (keys:string, values:boolean)A map of optional or early-stage features that can be enabled for the user cluster.
Some feature gates cannot be disabled after being enabled.
The available feature gates vary based on KKP version, Kubernetes version and Seed configuration.
Please consult the KKP documentation for specific feature gates.
updateWindow UpdateWindowOptional: UpdateWindow configures automatic update systems to respect a maintenance window for
applying OS updates to nodes. This is only respected on Flatcar nodes currently.
usePodSecurityPolicyAdmissionPlugin booleanEnables the admission plugin PodSecurityPolicy. This plugin is deprecated by Kubernetes.
usePodNodeSelectorAdmissionPlugin booleanEnables the admission plugin PodNodeSelector. Needs additional configuration via the podNodeSelectorAdmissionPluginConfig field.
useEventRateLimitAdmissionPlugin booleanEnables the admission plugin EventRateLimit. Needs additional configuration via the eventRateLimitConfig field.
This plugin is considered “alpha” by Kubernetes.
admissionPlugins string arrayA list of arbitrary admission plugin names that are passed to kube-apiserver. Must not include admission plugins
that can be enabled via a separate setting.
podNodeSelectorAdmissionPluginConfig object (keys:string, values:string)Optional: Provides configuration for the PodNodeSelector admission plugin (needs plugin enabled
via usePodNodeSelectorAdmissionPlugin). It’s used by the backend to create a configuration file for this plugin.
The key:value from this map is converted to : in the file. Use clusterDefaultNodeSelector
as key to configure a default node selector.
eventRateLimitConfig EventRateLimitConfigOptional: Configures the EventRateLimit admission plugin (if enabled via useEventRateLimitAdmissionPlugin)
to create limits on Kubernetes event generation. The EventRateLimit plugin is capable of comparing and rate limiting incoming
Events based on several configured buckets.
enableUserSSHKeyAgent booleanOptional: Deploys the UserSSHKeyAgent to the user cluster. This field is immutable.
If enabled, the agent will be deployed and used to sync user ssh keys attached by users to the cluster.
No SSH keys will be synced after node creation if this is disabled.
enableOperatingSystemManager booleanOptional: Enables operating-system-manager (OSM), which is responsible for creating and managing worker node configuration.
This field is enabled(true) by default.
kubelb KubeLBKubeLB holds the configuration for the kubeLB component.
Only available in Enterprise Edition.
kubernetesDashboard KubernetesDashboardKubernetesDashboard holds the configuration for the kubernetes-dashboard component.
auditLogging AuditLoggingSettingsOptional: AuditLogging configures Kubernetes API audit logging (https://kubernetes.io/docs/tasks/debug-application-cluster/audit/)
for the user cluster.
opaIntegration OPAIntegrationSettingsOptional: OPAIntegration is a preview feature that enables OPA integration for the cluster.
Enabling it causes OPA Gatekeeper and its resources to be deployed on the user cluster.
By default it is disabled.
serviceAccount ServiceAccountSettingsOptional: ServiceAccount contains service account related settings for the user cluster’s kube-apiserver.
mla MLASettingsOptional: MLA contains monitoring, logging and alerting related settings for the user cluster.
applicationSettings ApplicationSettingsOptional: ApplicationSettings contains the settings relative to the application feature.
encryptionConfiguration EncryptionConfigurationOptional: Configures encryption-at-rest for Kubernetes API data. This needs the encryptionAtRest feature gate.
pause booleanIf this is set to true, the cluster will not be reconciled by KKP.
This indicates that the user needs to do some action to resolve the pause.
pauseReason stringPauseReason is the reason why the cluster is not being managed. This field is for informational
purpose only and can be set by a user or a controller to communicate the reason for pausing the cluster.
debugLog booleanEnables more verbose logging in KKP’s user-cluster-controller-manager.
disableCsiDriver booleanOptional: DisableCSIDriver disables the installation of CSI driver on the cluster
If this is true at the data center then it can’t be over-written in the cluster configuration
backupConfig BackupConfigOptional: BackupConfig contains the configuration options for managing the Cluster Backup Velero integration feature.

Back to top

ClusterStatus

ClusterStatus stores status information about a cluster.

Appears in:

FieldDescription
address ClusterAddressAddress contains the IPs/URLs to access the cluster control plane.
lastUpdated TimeDeprecated: LastUpdated contains the timestamp at which the cluster was last modified.
It is kept only for KKP 2.20 release to not break the backwards-compatibility and not being set for KKP higher releases.
extendedHealth ExtendedClusterHealthExtendedHealth exposes information about the current health state.
Extends standard health status for new states.
lastProviderReconciliation TimeLastProviderReconciliation is the time when the cloud provider resources
were last fully reconciled (during normal cluster reconciliation, KKP does
not re-check things like security groups, networks etc.).
namespaceName stringNamespaceName defines the namespace the control plane of this cluster is deployed in.
versions ClusterVersionsStatusVersions contains information regarding the current and desired versions
of the cluster control plane and worker nodes.
userName stringDeprecated: UserName contains the name of the owner of this cluster.
This field is not actively used and will be removed in the future.
userEmail stringUserEmail contains the email of the owner of this cluster.
During cluster creation only, this field will be used to bind the cluster-admin ClusterRole to a cluster owner.
errorReason ClusterStatusErrorErrorReason contains a error reason in case the controller encountered an error. Will be reset if the error was resolved.
errorMessage stringErrorMessage contains a default error message in case the controller encountered an error. Will be reset if the error was resolved.
conditions object (keys:ClusterConditionType, values:ClusterCondition)Conditions contains conditions the cluster is in, its primary use case is status signaling between controllers or between
controllers and the API.
phase ClusterPhasePhase is a description of the current cluster status, summarizing the various conditions,
possible active updates etc. This field is for informational purpose only and no logic
should be tied to the phase.
inheritedLabels object (keys:string, values:string)InheritedLabels are labels the cluster inherited from the project. They are read-only for users.
encryption ClusterEncryptionStatusEncryption describes the status of the encryption-at-rest feature for encrypted data in etcd.
resourceUsage ResourceDetailsResourceUsage shows the current usage of resources for the cluster.

Back to top

ClusterStatusError

Underlying type: string

Appears in:

ClusterTemplate

ClusterTemplate is the object representing a cluster template.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringClusterTemplate
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
clusterLabels object (keys:string, values:string)
inheritedClusterLabels object (keys:string, values:string)
credential string
userSSHKeys ClusterTemplateSSHKey arrayUserSSHKeys is the list of SSH public keys that should be assigned to all nodes in the cluster.
spec ClusterSpecSpec describes the desired state of a user cluster.

Back to top

ClusterTemplateInstance

ClusterTemplateInstance is the object representing a cluster template instance.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringClusterTemplateInstance
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec ClusterTemplateInstanceSpecSpec specifies the data for cluster instances.

Back to top

ClusterTemplateInstanceList

ClusterTemplateInstanceList specifies a list of cluster template instances.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringClusterTemplateInstanceList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items ClusterTemplateInstance arrayItems refers to the list of ClusterTemplateInstance objects.

Back to top

ClusterTemplateInstanceSpec

ClusterTemplateInstanceSpec specifies the data for cluster instances.

Appears in:

FieldDescription
projectID string
clusterTemplateID string
clusterTemplateName string
replicas integer

Back to top

ClusterTemplateList

ClusterTemplateList specifies a list of cluster templates.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringClusterTemplateList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items ClusterTemplate arrayItems refers to the list of the ClusterTemplate objects.

Back to top

ClusterTemplateSSHKey

ClusterTemplateSSHKey is the object for holding SSH key.

Appears in:

FieldDescription
id stringID is the name of the UserSSHKey object that is supposed to be assigned
to any ClusterTemplateInstance created based on this template.
name stringName is the human readable SSH key name.

Back to top

ClusterVersionsStatus

ClusterVersionsStatus contains information regarding the current and desired versions of the cluster control plane and worker nodes.

Appears in:

FieldDescription
controlPlane SemverControlPlane is the currently active cluster version. This can lag behind the apiserver
version if an update is currently rolling out.
apiserver SemverApiserver is the currently desired version of the kube-apiserver. During
upgrades across multiple minor versions (e.g. from 1.20 to 1.23), this will gradually
be increased by the update-controller until the desired cluster version (spec.version)
is reached.
controllerManager SemverControllerManager is the currently desired version of the kube-controller-manager. This
field behaves the same as the apiserver field.
scheduler SemverScheduler is the currently desired version of the kube-scheduler. This field behaves the
same as the apiserver field.
oldestNodeVersion SemverOldestNodeVersion is the oldest node version currently in use inside the cluster. This can be
nil if there are no nodes. This field is primarily for speeding up reconciling, so that
the controller doesn’t have to re-fetch to the usercluster and query its node on every
reconciliation.

Back to top

ComponentSettings

Appears in:

FieldDescription
apiserver APIServerSettingsApiserver configures kube-apiserver settings.
controllerManager ControllerSettingsControllerManager configures kube-controller-manager settings.
scheduler ControllerSettingsScheduler configures kube-scheduler settings.
etcd EtcdStatefulSetSettingsEtcd configures the etcd ring used to store Kubernetes data.
prometheus StatefulSetSettingsPrometheus configures the Prometheus instance deployed into the cluster control plane.
nodePortProxyEnvoy NodeportProxyComponentNodePortProxyEnvoy configures the per-cluster nodeport-proxy-envoy that is deployed if
the LoadBalancer expose strategy is used. This is not effective if a different expose
strategy is configured.
konnectivityProxy KonnectivityProxySettingsKonnectivityProxy configures konnectivity-server and konnectivity-agent components.
userClusterController ControllerSettingsUserClusterController configures the KKP usercluster-controller deployed as part of the cluster control plane.
operatingSystemManager ControllerSettingsOperatingSystemManager configures operating-system-manager (the component generating node bootstrap scripts for machine-controller).

Back to top

ConditionType

Underlying type: string

ConditionType is the type defining the cluster or datacenter condition that must be met to block a specific version.

Appears in:

Constraint

Constraint specifies a kubermatic wrapper for the gatekeeper constraints.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringConstraint
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec ConstraintSpecSpec describes the desired state for the constraint.

Back to top

ConstraintList

ConstraintList specifies a list of constraints.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringConstraintList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items Constraint arrayItems is a list of Gatekeeper Constraints

Back to top

ConstraintSelector

ConstraintSelector is the object holding the cluster selection filters.

Appears in:

FieldDescription
providers string arrayProviders is a list of cloud providers to which the Constraint applies to. Empty means all providers are selected.
labelSelector LabelSelectorLabelSelector selects the Clusters to which the Constraint applies based on their labels

Back to top

ConstraintSpec

ConstraintSpec specifies the data for the constraint.

Appears in:

FieldDescription
constraintType stringConstraintType specifies the type of gatekeeper constraint that the constraint applies to
disabled booleanDisabled is the flag for disabling OPA constraints
match MatchMatch contains the constraint to resource matching data
parameters ParametersParameters specifies the parameters used by the constraint template REGO.
It supports both the legacy rawJSON parameters, in which all the parameters are set in a JSON string, and regular
parameters like in Gatekeeper Constraints.
If rawJSON is set, during constraint syncing to the user cluster, the other parameters are ignored
Example with rawJSON parameters:

parameters: rawJSON: ‘{“labels”:[“gatekeeper”]}’

And with regular parameters:

parameters: labels: [“gatekeeper”] | | selector ConstraintSelector | Selector specifies the cluster selection filters | | enforcementAction string | EnforcementAction defines the action to take in response to a constraint being violated. By default, EnforcementAction is set to deny as the default behavior is to deny admission requests with any violation. |

Back to top

ConstraintTemplate

ConstraintTemplate is the object representing a kubermatic wrapper for a gatekeeper constraint template.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringConstraintTemplate
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec ConstraintTemplateSpecSpec specifies the gatekeeper constraint template and KKP related spec.

Back to top

ConstraintTemplateList

ConstraintTemplateList specifies a list of constraint templates.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringConstraintTemplateList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items ConstraintTemplate arrayItems refers to the list of ConstraintTemplate objects.

Back to top

ConstraintTemplateSelector

ConstraintTemplateSelector is the object holding the cluster selection filters.

Appears in:

FieldDescription
providers string arrayProviders is a list of cloud providers to which the Constraint Template applies to. Empty means all providers are selected.
labelSelector LabelSelectorLabelSelector selects the Clusters to which the Constraint Template applies based on their labels

Back to top

ConstraintTemplateSpec

ConstraintTemplateSpec is the object representing the gatekeeper constraint template spec and kubermatic related spec.

Appears in:

FieldDescription
crd CRD
targets Target array
selector ConstraintTemplateSelectorSelector configures which clusters this constraint template is applied to.

Back to top

ContainerRuntimeContainerd

ContainerRuntimeContainerd defines containerd container runtime registries configs.

Appears in:

FieldDescription
registries object (keys:string, values:ContainerdRegistry)A map of registries to use to render configs and mirrors for containerd registries

Back to top

ControllerSettings

Appears in:

FieldDescription
replicas integer
resources ResourceRequirements
tolerations Toleration array
leaderElection LeaderElectionSettings

Back to top

Appears in:

FieldDescription
label string
url string
icon string
location string

Back to top

Underlying type: [CustomLink](#customlink)

Appears in:

FieldDescription
label string
url string
icon string
location string

Back to top

CustomNetworkPolicy

Underlying type: [struct{Name string "json:\"name\""; Spec k8s.io/api/networking/v1.NetworkPolicySpec "json:\"spec\""}](#struct{name-string-"json:\"name\"";-spec-k8sioapinetworkingv1networkpolicyspec-"json:\"spec\""})

CustomNetworkPolicy contains a name and the Spec of a NetworkPolicy.

Appears in:

Datacenter

Appears in:

FieldDescription
country stringOptional: Country of the seed as ISO-3166 two-letter code, e.g. DE or UK.
For informational purposes in the Kubermatic dashboard only.
location stringOptional: Detailed location of the cluster, like “Hamburg” or “Datacenter 7”.
For informational purposes in the Kubermatic dashboard only.
node NodeSettingsNode holds node-specific settings, like e.g. HTTP proxy, Docker
registries and the like. Proxy settings are inherited from the seed if
not specified here.
spec DatacenterSpecSpec describes the cloud provider settings used to manage resources
in this datacenter. Exactly one cloud provider must be defined.

Back to top

DatacenterSpec

DatacenterSpec configures a KKP datacenter. Provider configuration is mutually exclusive, and as such only a single provider can be configured per datacenter.

Appears in:

FieldDescription
digitalocean DatacenterSpecDigitaloceanDigitalocean configures a Digitalocean datacenter.
bringyourown DatacenterSpecBringYourOwnBringYourOwn contains settings for clusters using manually created
nodes via kubeadm.
edge DatacenterSpecEdgeEdge contains settings for clusters using manually created
nodes in edge envs.
aws DatacenterSpecAWSAWS configures an Amazon Web Services (AWS) datacenter.
azure DatacenterSpecAzureAzure configures an Azure datacenter.
openstack DatacenterSpecOpenstackOpenstack configures an Openstack datacenter.
packet DatacenterSpecPacketPacket configures an Equinix Metal datacenter.
hetzner DatacenterSpecHetznerHetzner configures a Hetzner datacenter.
vsphere DatacenterSpecVSphereVSphere configures a VMware vSphere datacenter.
vmwareclouddirector DatacenterSpecVMwareCloudDirectorVMwareCloudDirector configures a VMware Cloud Director datacenter.
gcp DatacenterSpecGCPGCP configures a Google Cloud Platform (GCP) datacenter.
kubevirt DatacenterSpecKubevirtKubevirt configures a KubeVirt datacenter.
alibaba DatacenterSpecAlibabaAlibaba configures an Alibaba Cloud datacenter.
anexia DatacenterSpecAnexiaAnexia configures an Anexia datacenter.
nutanix DatacenterSpecNutanixNutanix configures a Nutanix HCI datacenter.
requiredEmails string arrayOptional: When defined, only users with an e-mail address on the
given domains can make use of this datacenter. You can define multiple
domains, e.g. “example.com”, one of which must match the email domain
exactly (i.e. “example.com” will not match “user@test.example.com”).
enforceAuditLogging booleanOptional: EnforceAuditLogging enforces audit logging on every cluster within the DC,
ignoring cluster-specific settings.
enforcePodSecurityPolicy booleanOptional: EnforcePodSecurityPolicy enforces pod security policy plugin on every clusters within the DC,
ignoring cluster-specific settings.
providerReconciliationInterval DurationOptional: ProviderReconciliationInterval is the time that must have passed since a
Cluster’s status.lastProviderReconciliation to make the cliuster controller
perform an in-depth provider reconciliation, where for example missing security
groups will be reconciled.
Setting this too low can cause rate limits by the cloud provider, setting this
too high means that if a resource at a cloud provider is removed/changed outside
of KKP, it will take this long to fix it.
operatingSystemProfiles OperatingSystemProfileListOptional: DefaultOperatingSystemProfiles specifies the OperatingSystemProfiles to use for each supported operating system.
machineFlavorFilter MachineFlavorFilterOptional: MachineFlavorFilter is used to filter out allowed machine flavors based on the specified resource limits like CPU, Memory, and GPU etc.
disableCsiDriver booleanOptional: DisableCSIDriver disables the installation of CSI driver on every clusters within the DC
If true it can’t be over-written in the cluster configuration
kubelb KubeLBDatacenterSettingsOptional: KubeLB holds the configuration for the kubeLB at the data center level.
Only available in Enterprise Edition.

Back to top

DatacenterSpecAWS

DatacenterSpecAWS describes an AWS datacenter.

Appears in:

FieldDescription
region stringThe AWS region to use, e.g. “us-east-1”. For a list of available regions, see
https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html
images ImageListList of AMIs to use for a given operating system.
This gets defaulted by querying for the latest AMI for the given distribution
when machines are created, so under normal circumstances it is not necessary
to define the AMIs statically.

Back to top

DatacenterSpecAlibaba

DatacenterSpecAlibaba describes a alibaba datacenter.

Appears in:

FieldDescription
region stringRegion to use, for a full list of regions see
https://www.alibabacloud.com/help/doc-detail/40654.htm

Back to top

DatacenterSpecAnexia

DatacenterSpecAnexia describes a anexia datacenter.

Appears in:

FieldDescription
locationID stringLocationID the location of the region

Back to top

DatacenterSpecAzure

DatacenterSpecAzure describes an Azure cloud datacenter.

Appears in:

FieldDescription
location stringRegion to use, for example “westeurope”. A list of available regions can be
found at https://azure.microsoft.com/en-us/global-infrastructure/locations/

Back to top

DatacenterSpecBringYourOwn

DatacenterSpecBringYourOwn describes a datacenter our of bring your own nodes.

Appears in:

DatacenterSpecDigitalocean

DatacenterSpecDigitalocean describes a DigitalOcean datacenter.

Appears in:

FieldDescription
region stringDatacenter location, e.g. “ams3”. A list of existing datacenters can be found
at https://www.digitalocean.com/docs/platform/availability-matrix/

Back to top

DatacenterSpecEdge

DatacenterSpecEdge describes a datacenter of edge nodes.

Appears in:

DatacenterSpecGCP

DatacenterSpecGCP describes a GCP datacenter.

Appears in:

FieldDescription
region stringRegion to use, for example “europe-west3”, for a full list of regions see
https://cloud.google.com/compute/docs/regions-zones/
zoneSuffixes string arrayList of enabled zones, for example [a, c]. See the link above for the available
zones in your chosen region.
regional booleanOptional: Regional clusters spread their resources across multiple availability zones.
Refer to the official documentation for more details on this:
https://cloud.google.com/kubernetes-engine/docs/concepts/regional-clusters

Back to top

DatacenterSpecHetzner

DatacenterSpecHetzner describes a Hetzner cloud datacenter.

Appears in:

FieldDescription
datacenter stringDatacenter location, e.g. “nbg1-dc3”. A list of existing datacenters can be found
at https://docs.hetzner.com/general/others/data-centers-and-connection/
network stringNetwork is the pre-existing Hetzner network in which the machines are running.
While machines can be in multiple networks, a single one must be chosen for the
HCloud CCM to work.
location stringOptional: Detailed location of the datacenter, like “Hamburg” or “Datacenter 7”.
For informational purposes only.

Back to top

DatacenterSpecKubevirt

DatacenterSpecKubevirt describes a kubevirt datacenter.

Appears in:

FieldDescription
dnsPolicy stringDNSPolicy represents the dns policy for the pod. Valid values are ‘ClusterFirstWithHostNet’, ‘ClusterFirst’,
‘Default’ or ‘None’. Defaults to “ClusterFirst”. DNS parameters given in DNSConfig will be merged with the
policy selected with DNSPolicy.
dnsConfig PodDNSConfigDNSConfig represents the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS
configuration based on DNSPolicy.
enableDefaultNetworkPolicies booleanOptional: EnableDefaultNetworkPolicies enables deployment of default network policies like cluster isolation.
Defaults to true.
customNetworkPolicies CustomNetworkPolicy arrayOptional: CustomNetworkPolicies allows to add some extra custom NetworkPolicies, that are deployed
in the dedicated infra KubeVirt cluster. They are added to the defaults.
images KubeVirtImageSourcesImages represents standard VM Image sources.
infraStorageClasses KubeVirtInfraStorageClass arrayOptional: InfraStorageClasses contains a list of KubeVirt infra cluster StorageClasses names
that will be used to initialise StorageClasses in the tenant cluster.
In the tenant cluster, the created StorageClass name will have as name:
kubevirt-

Back to top

DatacenterSpecNutanix

DatacenterSpecNutanix describes a Nutanix datacenter.

Appears in:

FieldDescription
endpoint stringEndpoint to use for accessing Nutanix Prism Central. No protocol or port should be passed,
for example “nutanix.example.com” or “10.0.0.1”
port integerOptional: Port to use when connecting to the Nutanix Prism Central endpoint (defaults to 9440)
allowInsecure booleanOptional: AllowInsecure allows to disable the TLS certificate check against the endpoint (defaults to false)
images ImageListImages to use for each supported operating system

Back to top

DatacenterSpecOpenstack

DatacenterSpecOpenstack describes an OpenStack datacenter.

Appears in:

FieldDescription
authURL stringAuthentication URL
availabilityZone stringUsed to configure availability zone.
region stringAuthentication region name
ignoreVolumeAZ booleanOptional
enforceFloatingIP booleanOptional
dnsServers string arrayUsed for automatic network creation
images ImageListImages to use for each supported operating system.
manageSecurityGroups booleanOptional: Gets mapped to the “manage-security-groups” setting in the cloud config.
This setting defaults to true.
useOctavia booleanOptional: Gets mapped to the “use-octavia” setting in the cloud config.
use-octavia is enabled by default in CCM since v1.17.0, and disabled by
default with the in-tree cloud provider.
trustDevicePath booleanOptional: Gets mapped to the “trust-device-path” setting in the cloud config.
This setting defaults to false.
nodeSizeRequirements OpenstackNodeSizeRequirementsOptional: Restrict the allowed VM configurations that can be chosen in
the KKP dashboard. This setting does not affect the validation webhook for
MachineDeployments.
enabledFlavors string arrayOptional: List of enabled flavors for the given datacenter
ipv6Enabled booleanOptional: defines if the IPv6 is enabled for the datacenter
csiCinderTopologyEnabled booleanOptional: configures enablement of topology support for the Cinder CSI Plugin.
This requires Nova and Cinder to have matching availability zones configured.

Back to top

DatacenterSpecPacket

DatacenterSpecPacket describes a Packet datacenter.

Appears in:

FieldDescription
facilities string arrayThe list of enabled facilities, for example “ams1”, for a full list of available
facilities see https://metal.equinix.com/developers/docs/locations/facilities/
metro stringMetros are facilities that are grouped together geographically and share capacity
and networking features, see https://metal.equinix.com/developers/docs/locations/metros/

Back to top

DatacenterSpecVMwareCloudDirector

Appears in:

FieldDescription
url stringEndpoint URL to use, including protocol, for example “https://vclouddirector.example.com”.
allowInsecure booleanIf set to true, disables the TLS certificate check against the endpoint.
catalog stringThe default catalog which contains the VM templates.
storageProfile stringThe name of the storage profile to use for disks attached to the VMs.
templates ImageListA list of VM templates to use for a given operating system. You must
define at least one template.

Back to top

DatacenterSpecVSphere

DatacenterSpecVSphere describes a vSphere datacenter.

Appears in:

FieldDescription
endpoint stringEndpoint URL to use, including protocol, for example “https://vcenter.example.com”.
allowInsecure booleanIf set to true, disables the TLS certificate check against the endpoint.
datastore stringThe default Datastore to be used for provisioning volumes using storage
classes/dynamic provisioning and for storing virtual machine files in
case no Datastore or DatastoreCluster is provided at Cluster level.
datacenter stringThe name of the datacenter to use.
cluster stringThe name of the vSphere cluster to use. Used for out-of-tree CSI Driver.
storagePolicy stringThe name of the storage policy to use for the storage class created in the user cluster.
rootPath stringOptional: The root path for cluster specific VM folders. Each cluster gets its own
folder below the root folder. Must be the FQDN (for example
“/datacenter-1/vm/all-kubermatic-vms-in-here”) and defaults to the root VM
folder: “/datacenter-1/vm”
templates ImageListA list of VM templates to use for a given operating system. You must
define at least one template.
See: https://github.com/kubermatic/machine-controller/blob/master/docs/vsphere.md#template-vms-preparation
infraManagementUser VSphereCredentialsOptional: Infra management user is the user that will be used for everything
except the cloud provider functionality, which will still use the credentials
passed in via the Kubermatic dashboard/API.
ipv6Enabled booleanOptional: defines if the IPv6 is enabled for the datacenter
defaultTagCategoryID stringDefaultTagCategoryID is the tag category id that will be used as default, if users don’t specify it on a cluster level,
and they don’t wish KKP to create default generated tag category, upon cluster creation.

Back to top

DefaultProjectResourceQuota

DefaultProjectResourceQuota contains the default resource quota which will be set for all projects that do not have a custom quota already set.

Appears in:

FieldDescription
quota ResourceDetailsQuota specifies the default CPU, Memory and Storage quantities for all the projects.

Back to top

DeploymentSettings

Appears in:

FieldDescription
replicas integer
resources ResourceRequirements
tolerations Toleration array

Back to top

Digitalocean

Appears in:

FieldDescription
enabled booleanOnly enabled presets will be available in the KKP dashboard.
datacenter stringIf datacenter is set, this preset is only applicable to the
configured datacenter.
token stringToken is used to authenticate with the DigitalOcean API.

Back to top

DigitaloceanCloudSpec

DigitaloceanCloudSpec specifies access data to DigitalOcean.

Appears in:

FieldDescription
credentialsReference GlobalSecretKeySelector
token stringToken is used to authenticate with the DigitalOcean API.

Back to top

EKS

Appears in:

FieldDescription
enabled booleanOnly enabled presets will be available in the KKP dashboard.
datacenter stringIf datacenter is set, this preset is only applicable to the
configured datacenter.
accessKeyID stringThe Access key ID used to authenticate against AWS.
secretAccessKey stringThe Secret Access Key used to authenticate against AWS.
assumeRoleARN stringDefines the ARN for an IAM role that should be assumed when handling resources on AWS. It will be used
to acquire temporary security credentials using an STS AssumeRole API operation whenever creating an AWS session.
required: false
assumeRoleExternalID stringAn arbitrary string that may be needed when calling the STS AssumeRole API operation.
Using an external ID can help to prevent the “confused deputy problem”.
required: false

Back to top

EdgeCloudSpec

EdgeCloudSpec specifies access data for an edge cluster.

Appears in:

EncryptionConfiguration

EncryptionConfiguration configures encryption-at-rest for Kubernetes API data.

Appears in:

FieldDescription
enabled booleanEnables encryption-at-rest on this cluster.
resources string arrayList of resources that will be stored encrypted in etcd.
secretbox SecretboxEncryptionConfigurationConfiguration for the secretbox static key encryption scheme as supported by Kubernetes.
More info: https://kubernetes.io/docs/tasks/administer-cluster/encrypt-data/#providers

Back to top

EnvoyLoadBalancerService

Appears in:

FieldDescription
annotations object (keys:string, values:string)Annotations are used to further tweak the LoadBalancer integration with the
cloud provider.
sourceRanges CIDR arraySourceRanges will restrict loadbalancer service to IP ranges specified using CIDR notation like 172.25.0.0/16.
This field will be ignored if the cloud-provider does not support the feature.
More info: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/

Back to top

EtcdBackupConfig

EtcdBackupConfig describes how snapshots of user cluster etcds should be performed. Each user cluster automatically gets a default EtcdBackupConfig in its cluster namespace.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringEtcdBackupConfig
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec EtcdBackupConfigSpecSpec describes details of an Etcd backup.
status EtcdBackupConfigStatus

Back to top

EtcdBackupConfigCondition

Appears in:

FieldDescription
status ConditionStatusStatus of the condition, one of True, False, Unknown.
lastHeartbeatTime TimeLast time we got an update on a given condition.
lastTransitionTime TimeLast time the condition transit from one status to another.
reason string(brief) reason for the condition’s last transition.
message stringHuman readable message indicating details about last transition.

Back to top

EtcdBackupConfigConditionType

Underlying type: string

EtcdBackupConfigConditionType is used to indicate the type of a EtcdBackupConfig condition. For all condition types, the true value must indicate success. All condition types must be registered within the AllClusterConditionTypes variable.

Appears in:

EtcdBackupConfigList

EtcdBackupConfigList is a list of etcd backup configs.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringEtcdBackupConfigList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items EtcdBackupConfig arrayItems is a list of EtcdBackupConfig objects.

Back to top

EtcdBackupConfigSpec

EtcdBackupConfigSpec specifies details of an etcd backup.

Appears in:

FieldDescription
name stringName defines the name of the backup
The name of the backup file in S3 will be -
If a schedule is set (see below), - will be appended.
cluster ObjectReferenceCluster is the reference to the cluster whose etcd will be backed up
schedule stringSchedule is a cron expression defining when to perform
the backup. If not set, the backup is performed exactly
once, immediately.
keep integerKeep is the number of backups to keep around before deleting the oldest one
If not set, defaults to DefaultKeptBackupsCount. Only used if Schedule is set.
destination stringDestination indicates where the backup will be stored. The destination name must correspond to a destination in
the cluster’s Seed.Spec.EtcdBackupRestore.

Back to top

EtcdBackupConfigStatus

Appears in:

FieldDescription
currentBackups BackupStatus arrayCurrentBackups tracks the creation and deletion progress of all backups managed by the EtcdBackupConfig
conditions object (keys:EtcdBackupConfigConditionType, values:EtcdBackupConfigCondition)Conditions contains conditions of the EtcdBackupConfig
cleanupRunning booleanIf the controller was configured with a cleanupContainer, CleanupRunning keeps track of the corresponding job

Back to top

EtcdBackupRestore

EtcdBackupRestore holds the configuration of the automatic backup and restores.

Appears in:

FieldDescription
destinations object (keys:string, values:BackupDestination)Destinations stores all the possible destinations where the backups for the Seed can be stored. If not empty,
it enables automatic backup and restore for the seed.
defaultDestination stringDefaultDestination marks the default destination that will be used for the default etcd backup config which is
created for every user cluster. Has to correspond to a destination in Destinations.
If removed, it removes the related default etcd backup configs.

Back to top

EtcdRestore

EtcdRestore specifies an add-on.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringEtcdRestore
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec EtcdRestoreSpecSpec describes details of an etcd restore.
status EtcdRestoreStatus

Back to top

EtcdRestoreList

EtcdRestoreList is a list of etcd restores.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringEtcdRestoreList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items EtcdRestore arrayItems is the list of the Etcd restores.

Back to top

EtcdRestorePhase

Underlying type: string

EtcdRestorePhase represents the lifecycle phase of an EtcdRestore.

Appears in:

EtcdRestoreSpec

EtcdRestoreSpec specifies details of an etcd restore.

Appears in:

FieldDescription
name stringName defines the name of the restore
The name of the restore file in S3 will be -
If a schedule is set (see below), - will be appended.
cluster ObjectReferenceCluster is the reference to the cluster whose etcd will be backed up
backupName stringBackupName is the name of the backup to restore from
backupDownloadCredentialsSecret stringBackupDownloadCredentialsSecret is the name of a secret in the cluster-xxx namespace containing
credentials needed to download the backup
destination stringDestination indicates where the backup was stored. The destination name should correspond to a destination in
the cluster’s Seed.Spec.EtcdBackupRestore. If empty, it will use the legacy destination configured in Seed.Spec.BackupRestore

Back to top

EtcdRestoreStatus

Appears in:

FieldDescription
phase EtcdRestorePhase
restoreTime Time

Back to top

EtcdStatefulSetSettings

Appears in:

FieldDescription
clusterSize integerClusterSize is the number of replicas created for etcd. This should be an
odd number to guarantee consensus, e.g. 3, 5 or 7.
storageClass stringStorageClass is the Kubernetes StorageClass used for persistent storage
which stores the etcd WAL and other data persisted across restarts. Defaults to
kubermatic-fast (the global default).
resources ResourceRequirementsResources allows to override the resource requirements for etcd Pods.
tolerations Toleration arrayTolerations allows to override the scheduling tolerations for etcd Pods.
hostAntiAffinity AntiAffinityTypeHostAntiAffinity allows to enforce a certain type of host anti-affinity on etcd
pods. Options are “preferred” (default) and “required”. Please note that
enforcing anti-affinity via “required” can mean that pods are never scheduled.
zoneAntiAffinity AntiAffinityTypeZoneAntiAffinity allows to enforce a certain type of availability zone anti-affinity on etcd
pods. Options are “preferred” (default) and “required”. Please note that
enforcing anti-affinity via “required” can mean that pods are never scheduled.
nodeSelector object (keys:string, values:string)NodeSelector is a selector which restricts the set of nodes where etcd Pods can run.

Back to top

EventRateLimitConfig

EventRateLimitConfig configures the EventRateLimit admission plugin. More info: https://kubernetes.io/docs/reference/access-authn-authz/admission-controllers/#eventratelimit

Appears in:

FieldDescription
server EventRateLimitConfigItem
namespace EventRateLimitConfigItem
user EventRateLimitConfigItem
sourceAndObject EventRateLimitConfigItem

Back to top

EventRateLimitConfigItem

Appears in:

FieldDescription
qps integer
burst integer
cacheSize integer

Back to top

ExposeStrategy

Underlying type: string

ExposeStrategy is the strategy used to expose a cluster control plane. Possible values are NodePort, LoadBalancer or Tunneling (requires a feature gate).

Appears in:

ExtendedClusterHealth

ExtendedClusterHealth stores health information of a cluster.

Appears in:

FieldDescription
apiserver HealthStatus
scheduler HealthStatus
controller HealthStatus
machineController HealthStatus
etcd HealthStatus
openvpn HealthStatusDeprecated: OpenVPN will be removed entirely in the future.
konnectivity HealthStatus
cloudProviderInfrastructure HealthStatus
userClusterControllerManager HealthStatus
applicationController HealthStatus
gatekeeperController HealthStatus
gatekeeperAudit HealthStatus
monitoring HealthStatus
logging HealthStatus
alertmanagerConfig HealthStatus
mlaGateway HealthStatus
operatingSystemManager HealthStatus
kubernetesDashboard HealthStatus
kubelb HealthStatus

Back to top

ExternalCluster

ExternalCluster is the object representing an external kubernetes cluster.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringExternalCluster
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec ExternalClusterSpecSpec describes the desired cluster state.
status ExternalClusterStatusStatus contains reconciliation information for the cluster.

Back to top

ExternalClusterAKSCloudSpec

Appears in:

FieldDescription
credentialsReference GlobalSecretKeySelectorCredentialsReference allows referencing a Secret resource instead of passing secret data in this spec.
name string
tenantID stringThe Azure Active Directory Tenant used for this cluster.
Can be read from credentialsReference instead.
subscriptionID stringThe Azure Subscription used for this cluster.
Can be read from credentialsReference instead.
clientID stringThe service principal used to access Azure.
Can be read from credentialsReference instead.
clientSecret stringThe client secret corresponding to the given service principal.
Can be read from credentialsReference instead.
location stringThe geo-location where the resource lives
resourceGroup stringThe resource group that will be used to look up and create resources for the cluster in.
If set to empty string at cluster creation, a new resource group will be created and this field will be updated to
the generated resource group’s name.

Back to top

ExternalClusterBringYourOwnCloudSpec

Appears in:

ExternalClusterCloudSpec

ExternalClusterCloudSpec mutually stores access data to a cloud provider.

Appears in:

FieldDescription
providerName ExternalClusterProvider
gke ExternalClusterGKECloudSpec
eks ExternalClusterEKSCloudSpec
aks ExternalClusterAKSCloudSpec
kubeone ExternalClusterKubeOneCloudSpec
bringyourown ExternalClusterBringYourOwnCloudSpec

Back to top

ExternalClusterCondition

Appears in:

FieldDescription
phase ExternalClusterPhase
message stringHuman readable message indicating details about last transition.

Back to top

ExternalClusterEKSCloudSpec

Appears in:

FieldDescription
credentialsReference GlobalSecretKeySelector
name string
accessKeyID stringThe Access key ID used to authenticate against AWS.
Can be read from credentialsReference instead.
secretAccessKey stringThe Secret Access Key used to authenticate against AWS.
Can be read from credentialsReference instead.
region string
roleArn stringThe Amazon Resource Name (ARN) of the IAM role that provides permissions
for the Kubernetes control plane to make calls to Amazon Web Services API
operations on your behalf.
vpcID stringThe VPC associated with your cluster.
subnetIDs string arrayThe subnets associated with your cluster.
securityGroupIDs string arrayThe security groups associated with the cross-account elastic network interfaces
that are used to allow communication between your nodes and the Kubernetes
control plane.
assumeRoleARN stringThe ARN for an IAM role that should be assumed when handling resources on AWS. It will be used
to acquire temporary security credentials using an STS AssumeRole API operation whenever creating an AWS session.
required: false
assumeRoleExternalID stringAn arbitrary string that may be needed when calling the STS AssumeRole API operation.
Using an external ID can help to prevent the “confused deputy problem”.
required: false

Back to top

ExternalClusterGKECloudSpec

Appears in:

FieldDescription
credentialsReference GlobalSecretKeySelector
name string
serviceAccount stringServiceAccount: The Google Cloud Platform Service Account.
Can be read from credentialsReference instead.
zone stringZone: The name of the Google Compute Engine zone
(https://cloud.google.com/compute/docs/zones#available) in which the
cluster resides.

Back to top

ExternalClusterKubeOneCloudSpec

Appears in:

FieldDescription
providerName stringThe name of the cloud provider used, one of
“aws”, “azure”, “digitalocean”, “gcp”,
“hetzner”, “nutanix”, “openstack”, “packet”, “vsphere” KubeOne natively-supported providers
region stringThe cloud provider region in which the cluster resides.
This field is used only to display information.
credentialsReference GlobalSecretKeySelector
sshReference GlobalSecretKeySelector
manifestReference GlobalSecretKeySelector

Back to top

ExternalClusterList

ExternalClusterList specifies a list of external kubernetes clusters.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringExternalClusterList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items ExternalCluster arrayItems holds the list of the External Kubernetes cluster.

Back to top

ExternalClusterNetworkRanges

ExternalClusterNetworkRanges represents ranges of network addresses.

Appears in:

FieldDescription
cidrBlocks string array

Back to top

ExternalClusterNetworkingConfig

ExternalClusterNetworkingConfig specifies the different networking parameters for an external cluster.

Appears in:

FieldDescription
services ExternalClusterNetworkRangesThe network ranges from which service VIPs are allocated.
It can contain one IPv4 and/or one IPv6 CIDR.
If both address families are specified, the first one defines the primary address family.
pods ExternalClusterNetworkRangesThe network ranges from which POD networks are allocated.
It can contain one IPv4 and/or one IPv6 CIDR.
If both address families are specified, the first one defines the primary address family.

Back to top

ExternalClusterPhase

Underlying type: string

Appears in:

ExternalClusterProvider

Underlying type: string

ExternalClusterProvider is the identifier for the cloud provider that hosts the external cluster control plane.

Appears in:

ExternalClusterProviderType

Underlying type: string

ExternalClusterProviderType is used to indicate ExternalCluster Provider Types.

Appears in:

ExternalClusterProviderVersioningConfiguration

ExternalClusterProviderVersioningConfiguration configures the available and default Kubernetes versions for ExternalCluster Providers.

Appears in:

FieldDescription
versions Semver arrayVersions lists the available versions.
default SemverDefault is the default version to offer users.
updates Semver arrayUpdates is a list of available upgrades.

Back to top

ExternalClusterSpec

ExternalClusterSpec specifies the data for a new external kubernetes cluster.

Appears in:

FieldDescription
humanReadableName stringHumanReadableName is the cluster name provided by the user
kubeconfigReference GlobalSecretKeySelectorReference to cluster Kubeconfig
version SemverDefines the wanted version of the control plane.
cloudSpec ExternalClusterCloudSpecCloudSpec contains provider specific fields
clusterNetwork ExternalClusterNetworkingConfigClusterNetwork contains the different networking parameters for an external cluster.
containerRuntime stringContainerRuntime to use, i.e. docker or containerd.
pause booleanIf this is set to true, the cluster will not be reconciled by KKP.
This indicates that the user needs to do some action to resolve the pause.
pauseReason stringPauseReason is the reason why the cluster is not being managed. This field is for informational
purpose only and can be set by a user or a controller to communicate the reason for pausing the cluster.

Back to top

ExternalClusterStatus

ExternalClusterStatus denotes status information about an ExternalCluster.

Appears in:

FieldDescription
condition ExternalClusterConditionConditions contains conditions an externalcluster is in, its primary use case is status signaling for controller

Back to top

GCP

Appears in:

FieldDescription
enabled booleanOnly enabled presets will be available in the KKP dashboard.
datacenter stringIf datacenter is set, this preset is only applicable to the
configured datacenter.
serviceAccount stringServiceAccount is the Google Service Account (JSON format), encoded with base64.
network string
subnetwork string

Back to top

GCPCloudSpec

GCPCloudSpec specifies access data to GCP.

Appears in:

FieldDescription
credentialsReference GlobalSecretKeySelector
serviceAccount stringThe Google Service Account (JSON format), encoded with base64.
network string
subnetwork string
nodePortsAllowedIPRange stringA CIDR range that will be used to allow access to the node port range in the firewall rules to.
If NodePortsAllowedIPRange nor NodePortsAllowedIPRanges is set, the node port range can be accessed from anywhere.
nodePortsAllowedIPRanges NetworkRangesOptional: CIDR ranges that will be used to allow access to the node port range in the firewall rules to.
If NodePortsAllowedIPRange nor NodePortsAllowedIPRanges is set, the node port range can be accessed from anywhere.

Back to top

GKE

Appears in:

FieldDescription
enabled booleanOnly enabled presets will be available in the KKP dashboard.
datacenter stringIf datacenter is set, this preset is only applicable to the
configured datacenter.
serviceAccount string

Back to top

GroupProjectBinding

GroupProjectBinding specifies a binding between a group and a project This resource is used by the user management to manipulate member groups of the given project.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringGroupProjectBinding
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec GroupProjectBindingSpecSpec describes an oidc group binding to a project.

Back to top

GroupProjectBindingList

GroupProjectBindingList is a list of group project bindings.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringGroupProjectBindingList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items GroupProjectBinding arrayItems holds the list of the group and project bindings.

Back to top

GroupProjectBindingSpec

GroupProjectBindingSpec specifies an oidc group binding to a project.

Appears in:

FieldDescription
group stringGroup is the group name that is bound to the given project.
projectID stringProjectID is the ID of the target project.
Should be a valid lowercase RFC1123 domain name
role stringRole is the user’s role within the project, determining their permissions.
Possible roles are:
“viewers” - allowed to get/list project resources
“editors” - allowed to edit all project resources
“owners” - same as editors, but also can manage users in the project

Back to top

GroupVersionKind

GroupVersionKind unambiguously identifies a kind. It doesn’t anonymously include GroupVersion to avoid automatic coercion. It doesn’t use a GroupVersion to avoid custom marshalling.

Appears in:

FieldDescription
group string
version string

Back to top

HealthStatus

Underlying type: string

Appears in:

Hetzner

Appears in:

FieldDescription
enabled booleanOnly enabled presets will be available in the KKP dashboard.
datacenter stringIf datacenter is set, this preset is only applicable to the
configured datacenter.
token stringToken is used to authenticate with the Hetzner API.
network stringNetwork is the pre-existing Hetzner network in which the machines are running.
While machines can be in multiple networks, a single one must be chosen for the
HCloud CCM to work.
If this is empty, the network configured on the datacenter will be used.

Back to top

HetznerCloudSpec

HetznerCloudSpec specifies access data to hetzner cloud.

Appears in:

FieldDescription
credentialsReference GlobalSecretKeySelector
token stringToken is used to authenticate with the Hetzner cloud API.
network stringNetwork is the pre-existing Hetzner network in which the machines are running.
While machines can be in multiple networks, a single one must be chosen for the
HCloud CCM to work.
If this is empty, the network configured on the datacenter will be used.

Back to top

IPAMAllocation

IPAMAllocation is the object representing an allocation from an IPAMPool made for a particular KKP user cluster.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringIPAMAllocation
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec IPAMAllocationSpec

Back to top

IPAMAllocationList

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringIPAMAllocationList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items IPAMAllocation array

Back to top

IPAMAllocationSpec

IPAMAllocationSpec specifies an allocation from an IPAMPool made for a particular KKP user cluster.

Appears in:

FieldDescription
type IPAMPoolAllocationTypeType is the allocation type that is being used.
dc stringDC is the datacenter of the allocation.
cidr SubnetCIDRCIDR is the CIDR that is being used for the allocation.
Set when “type=prefix”.
addresses string arrayAddresses are the IP address ranges that are being used for the allocation.
Set when “type=range”.

Back to top

IPAMPool

IPAMPool is the object representing Multi-Cluster IP Address Management (IPAM) configuration for KKP user clusters.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringIPAMPool
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec IPAMPoolSpecSpec describes the Multi-Cluster IP Address Management (IPAM) configuration for KKP user clusters.

Back to top

IPAMPoolAllocationType

Underlying type: string

IPAMPoolAllocationType defines the type of allocation to be used. Possible values are prefix and range.

Appears in:

IPAMPoolDatacenterSettings

IPAMPoolDatacenterSettings contains IPAM Pool configuration for a datacenter.

Appears in:

FieldDescription
type IPAMPoolAllocationTypeType is the allocation type to be used.
poolCidr SubnetCIDRPoolCIDR is the pool CIDR to be used for the allocation.
allocationPrefix integerAllocationPrefix is the prefix for the allocation.
Used when “type=prefix”.
excludePrefixes SubnetCIDR arrayOptional: ExcludePrefixes is used to exclude particular subnets for the allocation.
NOTE: must be the same length as allocationPrefix.
Can be used when “type=prefix”.
allocationRange integerAllocationRange is the range for the allocation.
Used when “type=range”.
excludeRanges string arrayOptional: ExcludeRanges is used to exclude particular IPs or IP ranges for the allocation.
Examples: “192.168.1.100-192.168.1.110”, “192.168.1.255”.
Can be used when “type=range”.

Back to top

IPAMPoolList

IPAMPoolList is the list of the object representing Multi-Cluster IP Address Management (IPAM) configuration for KKP user clusters.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringIPAMPoolList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items IPAMPool arrayItems holds the list of IPAM pool objects.

Back to top

IPAMPoolSpec

IPAMPoolSpec specifies the Multi-Cluster IP Address Management (IPAM) configuration for KKP user clusters.

Appears in:

FieldDescription
datacenters object (keys:string, values:IPAMPoolDatacenterSettings)Datacenters contains a map of datacenters (DCs) for the allocation.

Back to top

IPFamily

Underlying type: string

Appears in:

IPVSConfiguration

IPVSConfiguration contains ipvs-related configuration details for kube-proxy.

Appears in:

FieldDescription
strictArp booleanStrictArp configure arp_ignore and arp_announce to avoid answering ARP queries from kube-ipvs0 interface.
defaults to true.

Back to top

ImageList

Underlying type: OperatingSystem]string

ImageList defines a map of operating system and the image to use.

Appears in:

Incompatibility

Incompatibility represents a version incompatibility for a user cluster.

Appears in:

FieldDescription
provider stringProvider to which to apply the compatibility check.
Empty string matches all providers
version stringVersion is the Kubernetes version that must be checked. Wildcards are allowed, e.g. “1.25.*”.
condition ConditionTypeCondition is the cluster or datacenter condition that must be met to block a specific version
operation OperationTypeOperation is the operation triggering the compatibility check (CREATE or UPDATE)

Back to top

Kind

Kind specifies the resource Kind and APIGroup.

Appears in:

FieldDescription
kinds string arrayKinds specifies the kinds of the resources
apiGroups string arrayAPIGroups specifies the APIGroups of the resources

Back to top

KonnectivityProxySettings

Appears in:

FieldDescription
resources ResourceRequirementsResources configure limits/requests for Konnectivity components.
keepaliveTime stringKeepaliveTime represents a duration of time to check if the transport is still alive.
The option is propagated to agents and server.
Defaults to 1m.

Back to top

KubeLB

KubeLB contains settings for the kubeLB component as part of the cluster control plane. This component is responsible for managing load balancers. Only available in Enterprise Edition.

Appears in:

FieldDescription
enabled booleanControls whether kubeLB is deployed or not.

Back to top

KubeLBDatacenterSettings

Appears in:

FieldDescription
kubeconfig ObjectReferenceKubeconfig is reference to the Kubeconfig for the kubeLB management cluster.
enabled booleanEnabled is used to enable/disable kubeLB for the datacenter. This is used to control whether installing kubeLB is allowed or not for the datacenter.
enforced booleanEnforced is used to enforce kubeLB installation for all the user clusters belonging to this datacenter. Setting enforced to false will not uninstall kubeLB from the user clusters and it needs to be disabled manually.
nodeAddressType stringNodeAddressType is used to configure the address type from node, used for load balancing.
Optional: Defaults to ExternalIP.

Back to top

KubeLBSettings

Appears in:

FieldDescription
kubeconfig ObjectReferenceKubeconfig is reference to the Kubeconfig for the kubeLB management cluster.

Back to top

KubeVirtImageSources

KubeVirtImageSources represents KubeVirt image sources.

Appears in:

FieldDescription
http KubeVirtHTTPSourceHTTP represents a http source.

Back to top

KubeVirtInfraStorageClass

Appears in:

FieldDescription
name string
isDefaultClass booleanOptional: IsDefaultClass. If true, the created StorageClass in the tenant cluster will be annotated with:
storageclass.kubernetes.io/is-default-class : true
If missing or false, annotation will be:
storageclass.kubernetes.io/is-default-class : false

Back to top

KubermaticAPIConfiguration

KubermaticAPIConfiguration configures the dashboard.

Appears in:

FieldDescription
dockerRepository stringDockerRepository is the repository containing the Kubermatic REST API image.
dockerTag stringDockerTag is used to overwrite the Kubermatic API Docker image tag and is only for development
purposes. This field must not be set in production environments. If DockerTag is specified then
DockerTagSuffix will be ignored.
dockerTagSuffix stringDockerTagSuffix is appended to the KKP version used for referring to the custom Kubermatic API image.
If left empty, either the DockerTag if specified or the original Kubermatic API Docker image tag will be used.
With DockerTagSuffix the tag becomes <KKP_VERSION-SUFFIX> i.e. “v2.15.0-SUFFIX”.
accessibleAddons string arrayAccessibleAddons is a list of addons that should be enabled in the API.
pprofEndpoint stringPProfEndpoint controls the port the API should listen on to provide pprof
data. This port is never exposed from the container and only available via port-forwardings.
resources ResourceRequirementsResources describes the requested and maximum allowed CPU/memory usage.
debugLog booleanDebugLog enables more verbose logging.
replicas integerReplicas sets the number of pod replicas for the API deployment.

Back to top

KubermaticAddonsConfiguration

KubermaticAddonConfiguration describes the addons for a given cluster runtime.

Appears in:

FieldDescription
default string arrayDefault is the list of addons to be installed by default into each cluster.
Mutually exclusive with “defaultManifests”.
defaultManifests stringDefaultManifests is a list of addon manifests to install into all clusters.
Mutually exclusive with “default”.
dockerRepository stringDockerRepository is the repository containing the Docker image containing
the possible addon manifests.
dockerTagSuffix stringDockerTagSuffix is appended to the tag used for referring to the addons image.
If left empty, the tag will be the KKP version (e.g. “v2.15.0”), with a
suffix it becomes “v2.15.0-SUFFIX”.

Back to top

KubermaticAuthConfiguration

KubermaticAuthConfiguration defines keys and URLs for Dex.

Appears in:

FieldDescription
clientID string
tokenIssuer string
issuerRedirectURL string
issuerClientID string
issuerClientSecret string
issuerCookieKey string
serviceAccountKey string
skipTokenIssuerTLSVerify boolean

Back to top

KubermaticConfiguration

KubermaticConfiguration is the configuration required for running Kubermatic.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringKubermaticConfiguration
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec KubermaticConfigurationSpec
status KubermaticConfigurationStatus

Back to top

KubermaticConfigurationList

KubermaticConfigurationList is a collection of KubermaticConfigurations.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringKubermaticConfigurationList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items KubermaticConfiguration array

Back to top

KubermaticConfigurationSpec

KubermaticConfigurationSpec is the spec for a Kubermatic installation.

Appears in:

FieldDescription
caBundle TypedLocalObjectReferenceCABundle references a ConfigMap in the same namespace as the KubermaticConfiguration.
This ConfigMap must contain a ca-bundle.pem with PEM-encoded certificates. This bundle
automatically synchronized into each seed and each usercluster. APIGroup and Kind are
currently ignored.
imagePullSecret stringImagePullSecret is used to authenticate against Docker registries.
auth KubermaticAuthConfigurationAuth defines keys and URLs for Dex. These must be defined unless the HeadlessInstallation
feature gate is set, which will disable the UI/API and its need for an OIDC provider entirely.
featureGates object (keys:string, values:boolean)FeatureGates are used to optionally enable certain features.
ui KubermaticUIConfigurationUI configures the dashboard.
api KubermaticAPIConfigurationAPI configures the frontend REST API used by the dashboard.
seedController KubermaticSeedControllerConfigurationSeedController configures the seed-controller-manager.
masterController KubermaticMasterControllerConfigurationMasterController configures the master-controller-manager.
webhook KubermaticWebhookConfigurationWebhook configures the webhook.
userCluster KubermaticUserClusterConfigurationUserCluster configures various aspects of the user-created clusters.
exposeStrategy ExposeStrategyExposeStrategy is the strategy to expose the cluster with.
Note: The seed_dns_overwrite setting of a Seed’s datacenter doesn’t have any effect
if this is set to LoadBalancerStrategy.
ingress KubermaticIngressConfigurationIngress contains settings for making the API and UI accessible remotely.
versions KubermaticVersioningConfigurationVersions configures the available and default Kubernetes versions and updates.
verticalPodAutoscaler KubermaticVPAConfigurationVerticalPodAutoscaler configures the Kubernetes VPA integration.
proxy KubermaticProxyConfigurationProxy allows to configure Kubermatic to use proxies to talk to the
world outside of its cluster.

Back to top

KubermaticConfigurationStatus

KubermaticConfigurationStatus stores status information about a KubermaticConfiguration.

Appears in:

FieldDescription
kubermaticVersion stringKubermaticVersion current Kubermatic Version.
kubermaticEdition stringKubermaticEdition current Kubermatic Edition , i.e. Community Edition or Enterprise Edition.

Back to top

KubermaticIngressConfiguration

Appears in:

FieldDescription
domain stringDomain is the base domain where the dashboard shall be available. Even with
a disabled Ingress, this must always be a valid hostname.
className stringClassName is the Ingress resource’s class name, used for selecting the appropriate
ingress controller.
namespaceOverride stringNamespaceOverride need to be set if a different ingress-controller is used than the KKP default one.
disable booleanDisable will prevent an Ingress from being created at all. This is mostly useful
during testing. If the Ingress is disabled, the CertificateIssuer setting can also
be left empty, as no Certificate resource will be created.
certificateIssuer TypedLocalObjectReferenceCertificateIssuer is the name of a cert-manager Issuer or ClusterIssuer (default)
that will be used to acquire the certificate for the configured domain.
To use a namespaced Issuer, set the Kind to “Issuer” and manually create the
matching Issuer in Kubermatic’s namespace.
Setting an empty name disables the automatic creation of certificates and disables
the TLS settings on the Kubermatic Ingress.

Back to top

KubermaticMasterControllerConfiguration

KubermaticMasterControllerConfiguration configures the Kubermatic master controller-manager.

Appears in:

FieldDescription
dockerRepository stringDockerRepository is the repository containing the Kubermatic master-controller-manager image.
projectsMigrator KubermaticProjectsMigratorConfigurationProjectsMigrator configures the migrator for user projects.
pprofEndpoint stringPProfEndpoint controls the port the master-controller-manager should listen on to provide pprof
data. This port is never exposed from the container and only available via port-forwardings.
resources ResourceRequirementsResources describes the requested and maximum allowed CPU/memory usage.
debugLog booleanDebugLog enables more verbose logging.
replicas integerReplicas sets the number of pod replicas for the master-controller-manager.

Back to top

KubermaticProjectsMigratorConfiguration

KubermaticProjectsMigratorConfiguration configures the Kubermatic master controller-manager.

Appears in:

FieldDescription
dryRun booleanDryRun makes the migrator only log the actions it would take.

Back to top

KubermaticProxyConfiguration

KubermaticProxyConfiguration can be used to control how the various Kubermatic components reach external services / the Internet. These settings are reflected as environment variables for the Kubermatic pods.

Appears in:

FieldDescription
http stringHTTP is the full URL to the proxy to use for plaintext HTTP
connections, e.g. “http://internalproxy.example.com:8080”.
https stringHTTPS is the full URL to the proxy to use for encrypted HTTPS
connections, e.g. “http://secureinternalproxy.example.com:8080”.
noProxy stringNoProxy is a comma-separated list of hostnames / network masks
for which no proxy shall be used. If you make use of proxies,
this list should contain all local and cluster-internal domains
and networks, e.g. “10.0.0.0/8,172.16.0.0/12,192.168.0.0/16,mydomain”.
The operator will always prepend the following elements to this
list if proxying is configured (i.e. HTTP/HTTPS are not empty):
“127.0.0.1/8”, “localhost”, “.local”, “.local.”, “kubernetes”, “.default”, “.svc”

Back to top

KubermaticSeedControllerConfiguration

KubermaticSeedControllerConfiguration configures the Kubermatic seed controller-manager.

Appears in:

FieldDescription
dockerRepository stringDockerRepository is the repository containing the Kubermatic seed-controller-manager image.
backupStoreContainer stringBackupStoreContainer is the container used for shipping etcd snapshots to a backup location.
backupDeleteContainer stringBackupDeleteContainer is the container used for deleting etcd snapshots from a backup location.
backupCleanupContainer stringDeprecated: BackupCleanupContainer is the container used for removing expired backups from the storage location.
This field is a no-op and is no longer used. The old backup controller it was used for has been
removed. Do not set this field.
maximumParallelReconciles integerMaximumParallelReconciles limits the number of cluster reconciliations
that are active at any given time.
pprofEndpoint stringPProfEndpoint controls the port the seed-controller-manager should listen on to provide pprof
data. This port is never exposed from the container and only available via port-forwardings.
resources ResourceRequirementsResources describes the requested and maximum allowed CPU/memory usage.
debugLog booleanDebugLog enables more verbose logging.
replicas integerReplicas sets the number of pod replicas for the seed-controller-manager.

Back to top

KubermaticSetting

KubermaticSetting is the type representing a KubermaticSetting. These settings affect the KKP dashboard and are not relevant when using the Kube API on the master/seed clusters directly.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringKubermaticSetting
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec SettingSpec

Back to top

KubermaticSettingList

KubermaticSettingList is a list of settings.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringKubermaticSettingList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items KubermaticSetting array

Back to top

KubermaticUIConfiguration

KubermaticUIConfiguration configures the dashboard.

Appears in:

FieldDescription
dockerRepository stringDockerRepository is the repository containing the Kubermatic dashboard image.
dockerTag stringDockerTag is used to overwrite the dashboard Docker image tag and is only for development
purposes. This field must not be set in production environments. If DockerTag is specified then
DockerTagSuffix will be ignored.
dockerTagSuffix stringDockerTagSuffix is appended to the KKP version used for referring to the custom dashboard image.
If left empty, either the DockerTag if specified or the original dashboard Docker image tag will be used.
With DockerTagSuffix the tag becomes <KKP_VERSION-SUFFIX> i.e. “v2.15.0-SUFFIX”.
config stringConfig sets flags for various dashboard features.
resources ResourceRequirementsResources describes the requested and maximum allowed CPU/memory usage.
replicas integerReplicas sets the number of pod replicas for the UI deployment.
extraVolumeMounts VolumeMount arrayExtraVolumeMounts allows to mount additional volumes into the UI container.
extraVolumes Volume arrayExtraVolumes allows to mount additional volumes into the UI container.

Back to top

KubermaticUserClusterConfiguration

KubermaticUserClusterConfiguration controls various aspects of the user-created clusters.

Appears in:

FieldDescription
kubermaticDockerRepository stringKubermaticDockerRepository is the repository containing the Kubermatic user-cluster-controller-manager image.
dnatControllerDockerRepository stringDNATControllerDockerRepository is the repository containing the
dnat-controller image.
etcdLauncherDockerRepository stringEtcdLauncherDockerRepository is the repository containing the Kubermatic
etcd-launcher image.
overwriteRegistry stringOverwriteRegistry specifies a custom Docker registry which will be used for all images
used for user clusters (user cluster control plane + addons). This also applies to
the KubermaticDockerRepository and DNATControllerDockerRepository fields.
addons KubermaticAddonsConfigurationAddons controls the optional additions installed into each user cluster.
systemApplications SystemApplicationsConfigurationSystemApplications contains configuration for system Applications (such as CNI).
nodePortRange stringNodePortRange is the port range for user clusters - this must match the NodePort
range of the seed cluster.
monitoring KubermaticUserClusterMonitoringConfigurationMonitoring can be used to fine-tune to in-cluster Prometheus.
disableApiserverEndpointReconciling booleanDisableAPIServerEndpointReconciling can be used to toggle the --endpoint-reconciler-type flag for
the Kubernetes API server.
etcdVolumeSize stringEtcdVolumeSize configures the volume size to use for each etcd pod inside user clusters.
apiserverReplicas integerAPIServerReplicas configures the replica count for the API-Server deployment inside user clusters.
machineController MachineControllerConfigurationMachineController configures the Machine Controller
operatingSystemManager OperatingSystemManagerOperatingSystemManager configures the image repo and the tag version for osm deployment.

Back to top

KubermaticUserClusterMonitoringConfiguration

KubermaticUserClusterMonitoringConfiguration can be used to fine-tune to in-cluster Prometheus.

Appears in:

FieldDescription
disableDefaultRules booleanDisableDefaultRules disables the recording and alerting rules.
disableDefaultScrapingConfigs booleanDisableDefaultScrapingConfigs disables the default scraping targets.
customRules stringCustomRules can be used to inject custom recording and alerting rules. This field
must be a YAML-formatted string with a group element at its root, as documented
on https://prometheus.io/docs/prometheus/latest/configuration/alerting_rules/.
This value is treated as a Go template, which allows to inject dynamic values like
the internal cluster address or the cluster ID. Refer to pkg/resources/prometheus
and the documentation for more information on the available fields.
customScrapingConfigs stringCustomScrapingConfigs can be used to inject custom scraping rules. This must be a
YAML-formatted string containing an array of scrape configurations as documented
on https://prometheus.io/docs/prometheus/latest/configuration/configuration/#scrape_config.
This value is treated as a Go template, which allows to inject dynamic values like
the internal cluster address or the cluster ID. Refer to pkg/resources/prometheus
and the documentation for more information on the available fields.
scrapeAnnotationPrefix stringScrapeAnnotationPrefix (if set) is used to make the in-cluster Prometheus scrape pods
inside the user clusters.

Back to top

KubermaticVPAComponent

Appears in:

FieldDescription
dockerRepository stringDockerRepository is the repository containing the component’s image.
resources ResourceRequirementsResources describes the requested and maximum allowed CPU/memory usage.

Back to top

KubermaticVPAConfiguration

KubermaticVPAConfiguration configures the Kubernetes VPA.

Appears in:

FieldDescription
recommender KubermaticVPAComponent
updater KubermaticVPAComponent
admissionController KubermaticVPAComponent

Back to top

KubermaticVersioningConfiguration

KubermaticVersioningConfiguration configures the available and default Kubernetes versions.

Appears in:

FieldDescription
versions Semver arrayVersions lists the available versions.
default SemverDefault is the default version to offer users.
updates Update arrayUpdates is a list of available and automatic upgrades.
All ’to’ versions must be configured in the version list for this orchestrator.
Each update may optionally be configured to be ‘automatic: true’, in which case the
controlplane of all clusters whose version matches the ‘from’ directive will get
updated to the ’to’ version. If automatic is enabled, the ’to’ version must be a
version and not a version range.
Also, updates may set ‘automaticNodeUpdate: true’, in which case Nodes will get
updates as well. ‘automaticNodeUpdate: true’ implies ‘automatic: true’ as well,
because Nodes may not have a newer version than the controlplane.
providerIncompatibilities Incompatibility arrayProviderIncompatibilities lists all the Kubernetes version incompatibilities
externalClusters object (keys:ExternalClusterProviderType, values:ExternalClusterProviderVersioningConfiguration)ExternalClusters contains the available and default Kubernetes versions and updates for ExternalClusters.

Back to top

KubermaticWebhookConfiguration

KubermaticWebhookConfiguration configures the Kubermatic webhook.

Appears in:

FieldDescription
dockerRepository stringDockerRepository is the repository containing the Kubermatic webhook image.
pprofEndpoint stringPProfEndpoint controls the port the webhook should listen on to provide pprof
data. This port is never exposed from the container and only available via port-forwardings.
resources ResourceRequirementsResources describes the requested and maximum allowed CPU/memory usage.
debugLog booleanDebugLog enables more verbose logging.
replicas integerReplicas sets the number of pod replicas for the webhook.

Back to top

KubernetesDashboard

KubernetesDashboard contains settings for the kubernetes-dashboard component as part of the cluster control plane.

Appears in:

FieldDescription
enabled booleanControls whether kubernetes-dashboard is deployed to the user cluster or not.
Enabled by default.

Back to top

Kubevirt

Appears in:

FieldDescription
enabled booleanOnly enabled presets will be available in the KKP dashboard.
datacenter stringIf datacenter is set, this preset is only applicable to the
configured datacenter.
kubeconfig stringKubeconfig is the cluster’s kubeconfig file, encoded with base64.

Back to top

KubevirtCloudSpec

KubevirtCloudSpec specifies the access data to Kubevirt.

Appears in:

FieldDescription
credentialsReference GlobalSecretKeySelector
kubeconfig stringThe cluster’s kubeconfig file, encoded with base64.
csiKubeconfig string
preAllocatedDataVolumes PreAllocatedDataVolume arrayCustom Images are a good example of this use case.
infraStorageClasses string arrayDeprecated: in favor of StorageClasses.
InfraStorageClasses is a list of storage classes from KubeVirt infra cluster that are used for
initialization of user cluster storage classes by the CSI driver kubevirt (hot pluggable disks)
storageClasses KubeVirtInfraStorageClass arrayStorageClasses is a list of storage classes from KubeVirt infra cluster that are used for
initialization of user cluster storage classes by the CSI driver kubevirt (hot pluggable disks.
It contains also some flag specifying which one is the default one.
imageCloningEnabled booleanImageCloningEnabled flag enable/disable cloning for a cluster.

Back to top

LBSKU

Underlying type: string

Azure SKU for Load Balancers. Possible values are basic and standard.

Appears in:

LeaderElectionSettings

Appears in:

FieldDescription
leaseDurationSeconds integerLeaseDurationSeconds is the duration in seconds that non-leader candidates
will wait to force acquire leadership. This is measured against time of
last observed ack.
renewDeadlineSeconds integerRenewDeadlineSeconds is the duration in seconds that the acting controlplane
will retry refreshing leadership before giving up.
retryPeriodSeconds integerRetryPeriodSeconds is the duration in seconds the LeaderElector clients
should wait between tries of actions.

Back to top

LoggingRateLimitSettings

LoggingRateLimitSettings contains rate-limiting configuration for logging in the user cluster.

Appears in:

FieldDescription
ingestionRate integerIngestionRate represents ingestion rate limit in requests per second (nginx rate in r/s).
ingestionBurstSize integerIngestionBurstSize represents ingestion burst size in number of requests (nginx burst).
queryRate integerQueryRate represents query request rate limit per second (nginx rate in r/s).
queryBurstSize integerQueryBurstSize represents query burst size in number of requests (nginx burst).

Back to top

MLAAdminSetting

MLAAdminSetting is the object representing cluster-specific administrator settings for KKP user cluster MLA (monitoring, logging & alerting) stack.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringMLAAdminSetting
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec MLAAdminSettingSpecSpec describes the cluster-specific administrator settings for KKP user cluster MLA
(monitoring, logging & alerting) stack.

Back to top

MLAAdminSettingList

MLAAdminSettingList specifies a list of administrtor settings for KKP user cluster MLA (monitoring, logging & alerting) stack.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringMLAAdminSettingList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items MLAAdminSetting arrayItems holds the list of the cluster-specific administrative settings
for KKP user cluster MLA.

Back to top

MLAAdminSettingSpec

MLAAdminSettingSpec specifies the cluster-specific administrator settings for KKP user cluster MLA (monitoring, logging & alerting) stack.

Appears in:

FieldDescription
clusterName stringClusterName is the name of the user cluster whose MLA settings are defined in this object.
monitoringRateLimits MonitoringRateLimitSettingsMonitoringRateLimits contains rate-limiting configuration for monitoring in the user cluster.
loggingRateLimits LoggingRateLimitSettingsLoggingRateLimits contains rate-limiting configuration logging in the user cluster.

Back to top

MLASettings

Appears in:

FieldDescription
monitoringEnabled booleanMonitoringEnabled is the flag for enabling monitoring in user cluster.
loggingEnabled booleanLoggingEnabled is the flag for enabling logging in user cluster.
monitoringResources ResourceRequirementsMonitoringResources is the resource requirements for user cluster prometheus.
loggingResources ResourceRequirementsLoggingResources is the resource requirements for user cluster promtail.
monitoringReplicas integerMonitoringReplicas is the number of desired pods of user cluster prometheus deployment.

Back to top

MachineControllerConfiguration

MachineControllerConfiguration configures Machine Controller.

Appears in:

FieldDescription
imageRepository stringImageRepository is used to override the Machine Controller image repository.
It is only for development, tests and PoC purposes. This field must not be set in production environments.
imageTag stringImageTag is used to override the Machine Controller image.
It is only for development, tests and PoC purposes. This field must not be set in production environments.

Back to top

MachineDeploymentOptions

Appears in:

FieldDescription
autoUpdatesEnabled booleanAutoUpdatesEnabled enables the auto updates option for machine deployments on the dashboard.
In case of flatcar linux, this will enable automatic updates through update engine and for other operating systems,
this will enable package updates on boot for the machines.
autoUpdatesEnforced booleanAutoUpdatesEnforced enforces the auto updates option for machine deployments on the dashboard.
In case of flatcar linux, this will enable automatic updates through update engine and for other operating systems,
this will enable package updates on boot for the machines.

Back to top

MachineFlavorFilter

Appears in:

FieldDescription
minCPU integerMinimum number of vCPU
maxCPU integerMaximum number of vCPU
minRAM integerMinimum RAM size in GB
maxRAM integerMaximum RAM size in GB
enableGPU booleanInclude VMs with GPU

Back to top

MachineNetworkingConfig

MachineNetworkingConfig specifies the networking parameters used for IPAM.

Appears in:

FieldDescription
cidr string
gateway string
dnsServers string array

Back to top

Match

Match contains the constraint to resource matching data.

Appears in:

FieldDescription
kinds Kind arrayKinds accepts a list of objects with apiGroups and kinds fields that list the groups/kinds of objects to which
the constraint will apply. If multiple groups/kinds objects are specified, only one match is needed for the resource to be in scope
scope stringScope accepts *, Cluster, or Namespaced which determines if cluster-scoped and/or namespace-scoped resources are selected. (defaults to *)
namespaces string arrayNamespaces is a list of namespace names. If defined, a constraint will only apply to resources in a listed namespace.
excludedNamespaces string arrayExcludedNamespaces is a list of namespace names. If defined, a constraint will only apply to resources not in a listed namespace.
labelSelector LabelSelectorLabelSelector is a standard Kubernetes label selector.
namespaceSelector LabelSelectorNamespaceSelector is a standard Kubernetes namespace selector. If defined, make sure to add Namespaces to your
configs.config.gatekeeper.sh object to ensure namespaces are synced into OPA

Back to top

MeteringConfiguration

MeteringConfiguration contains all the configuration for the metering tool.

Appears in:

FieldDescription
enabled boolean
storageClassName stringStorageClassName is the name of the storage class that the metering Prometheus instance uses to store metric data for reporting.
storageSize stringStorageSize is the size of the storage class. Default value is 100Gi. Changing this value requires
manual deletion of the existing Prometheus PVC (and thereby removing all metering data).
retentionDays integerRetentionDays is the number of days for which data should be kept in Prometheus. Default value is 90.
reports object (keys:string, values:MeteringReportConfiguration)ReportConfigurations is a map of report configuration definitions.

Back to top

MeteringReportConfiguration

Appears in:

FieldDescription
schedule stringSchedule in Cron format, see https://en.wikipedia.org/wiki/Cron. Please take a note that Schedule is responsible
only for setting the time when a report generation mechanism kicks off. The Interval MUST be set independently.
interval integerInterval defines the number of days consulted in the metering report.
Ignored when Monthly is set to true
monthly booleanMonthly creates a report for the previous month.
retention integerRetention defines a number of days after which reports are queued for removal. If not set, reports are kept forever.
Please note that this functionality works only for object storage that supports an object lifecycle management mechanism.
type string arrayTypes of reports to generate. Available report types are cluster and namespace. By default, all types of reports are generated.
format MeteringReportFormatFormat is the file format of the generated report, one of “csv” or “json” (defaults to “csv”).

Back to top

MeteringReportFormat

Underlying type: string

MeteringReportFormat maps directly to the values supported by the kubermatic-metering tool.

Appears in:

MlaOptions

Appears in:

FieldDescription
loggingEnabled boolean
loggingEnforced boolean
monitoringEnabled boolean
monitoringEnforced boolean

Back to top

MonitoringRateLimitSettings

MonitoringRateLimitSettings contains rate-limiting configuration for monitoring in the user cluster.

Appears in:

FieldDescription
ingestionRate integerIngestionRate represents the ingestion rate limit in samples per second (Cortex ingestion_rate).
ingestionBurstSize integerIngestionBurstSize represents ingestion burst size in samples per second (Cortex ingestion_burst_size).
maxSeriesPerMetric integerMaxSeriesPerMetric represents maximum number of series per metric (Cortex max_series_per_metric).
maxSeriesTotal integerMaxSeriesTotal represents maximum number of series per this user cluster (Cortex max_series_per_user).
queryRate integerQueryRate represents query request rate limit per second (nginx rate in r/s).
queryBurstSize integerQueryBurstSize represents query burst size in number of requests (nginx burst).
maxSamplesPerQuery integerMaxSamplesPerQuery represents maximum number of samples during a query (Cortex max_samples_per_query).
maxSeriesPerQuery integerMaxSeriesPerQuery represents maximum number of timeseries during a query (Cortex max_series_per_query).

Back to top

NetworkRanges

NetworkRanges represents ranges of network addresses.

Appears in:

FieldDescription
cidrBlocks string array

Back to top

NodePortProxyComponentEnvoy

Appears in:

FieldDescription
dockerRepository stringDockerRepository is the repository containing the component’s image.
resources ResourceRequirementsResources describes the requested and maximum allowed CPU/memory usage.
loadBalancerService EnvoyLoadBalancerService

Back to top

NodeSettings

NodeSettings are node specific flags which can be configured on datacenter level.

Appears in:

FieldDescription
httpProxy ProxyValueOptional: If set, this proxy will be configured for both HTTP and HTTPS.
noProxy ProxyValueOptional: If set this will be set as NO_PROXY environment variable on the node;
The value must be a comma-separated list of domains for which no proxy
should be used, e.g. “*.example.com,internal.dev”.
Note that the in-cluster apiserver URL will be automatically prepended
to this value.
insecureRegistries string arrayOptional: These image registries will be configured as insecure
on the container runtime.
registryMirrors string arrayOptional: These image registries will be configured as registry mirrors
on the container runtime.
pauseImage stringOptional: Translates to –pod-infra-container-image on the kubelet.
If not set, the kubelet will default it.
containerdRegistryMirrors ContainerRuntimeContainerdOptional: ContainerdRegistryMirrors configure registry mirrors endpoints. Can be used multiple times to specify multiple mirrors.

Back to top

NodeportProxyComponent

Appears in:

FieldDescription
dockerRepository stringDockerRepository is the repository containing the component’s image.
resources ResourceRequirementsResources describes the requested and maximum allowed CPU/memory usage.

Back to top

NodeportProxyConfig

Appears in:

FieldDescription
disable booleanDisable will prevent the Kubermatic Operator from creating a nodeport-proxy
setup on the seed cluster. This should only be used if a suitable replacement
is installed (like the nodeport-proxy Helm chart).
annotations object (keys:string, values:string)Annotations are used to further tweak the LoadBalancer integration with the
cloud provider where the seed cluster is running.
Deprecated: Use .envoy.loadBalancerService.annotations instead.
envoy NodePortProxyComponentEnvoyEnvoy configures the Envoy application itself.
envoyManager NodeportProxyComponentEnvoyManager configures the Kubermatic-internal Envoy manager.
updater NodeportProxyComponentUpdater configures the component responsible for updating the LoadBalancer
service.
ipFamilyPolicy IPFamilyPolicyIPFamilyPolicy configures the IP family policy for the LoadBalancer service.
ipFamilies IPFamily arrayIPFamilies configures the IP families to use for the LoadBalancer service.

Back to top

NotificationsOptions

Appears in:

FieldDescription
hideErrors booleanHideErrors will silence error notifications for the dashboard.
hideErrorEvents booleanHideErrorEvents will silence error events for the dashboard.

Back to top

Nutanix

Appears in:

FieldDescription
enabled booleanOnly enabled presets will be available in the KKP dashboard.
datacenter stringIf datacenter is set, this preset is only applicable to the
configured datacenter.
proxyURL stringOptional: To configure a HTTP proxy to access Nutanix Prism Central.
username stringUsername that is used to access the Nutanix Prism Central API.
password stringPassword corresponding to the provided user.
clusterName stringThe name of the Nutanix cluster to which the resources and nodes are deployed to.
projectName stringOptional: Nutanix project to use. If none is given,
no project will be used.
csiUsername stringPrism Element Username for CSI driver.
csiPassword stringPrism Element Password for CSI driver.
csiEndpoint stringCSIEndpoint to access Nutanix Prism Element for CSI driver.
csiPort integerCSIPort to use when connecting to the Nutanix Prism Element endpoint (defaults to 9440).

Back to top

NutanixCSIConfig

NutanixCSIConfig contains credentials and the endpoint for the Nutanix Prism Element to which the CSI driver connects.

Appears in:

FieldDescription
username stringPrism Element Username for CSI driver.
password stringPrism Element Password for CSI driver.
endpoint stringPrism Element Endpoint to access Nutanix Prism Element for CSI driver.
port integerOptional: Port to use when connecting to the Nutanix Prism Element endpoint (defaults to 9440).
storageContainer stringOptional: defaults to “SelfServiceContainer”.
fstype stringOptional: defaults to “xfs”
ssSegmentedIscsiNetwork booleanOptional: defaults to “false”.

Back to top

NutanixCloudSpec

NutanixCloudSpec specifies the access data to Nutanix.

Appears in:

FieldDescription
credentialsReference GlobalSecretKeySelector
clusterName stringClusterName is the Nutanix cluster that this user cluster will be deployed to.
projectName stringThe name of the project that this cluster is deployed into. If none is given, no project will be used.
proxyURL stringOptional: Used to configure a HTTP proxy to access Nutanix Prism Central.
username stringUsername to access the Nutanix Prism Central API.
password stringPassword corresponding to the provided user.
csi NutanixCSIConfigNutanixCSIConfig for CSI driver that connects to a prism element.

Back to top

OIDCProviderConfiguration

OIDCProviderConfiguration allows to configure OIDC provider at the Seed level. If set, it overwrites the OIDC configuration from the KubermaticConfiguration. OIDC is later used to configure:

Appears in:

FieldDescription
issuerURL stringURL of the provider which allows the API server to discover public signing keys.
issuerClientID stringIssuerClientID is the application’s ID.
issuerClientSecret stringIssuerClientSecret is the application’s secret.
cookieHashKey stringOptional: CookieHashKey is required, used to authenticate the cookie value using HMAC.
It is recommended to use a key with 32 or 64 bytes.
If not set, configuration is inherited from the default OIDC provider.
cookieSecureMode booleanOptional: CookieSecureMode if true then cookie received only with HTTPS otherwise with HTTP.
If not set, configuration is inherited from the default OIDC provider.
offlineAccessAsScope booleanOptional: OfflineAccessAsScope if true then “offline_access” scope will be used
otherwise ‘access_type=offline" query param will be passed.
If not set, configuration is inherited from the default OIDC provider.
skipTLSVerify booleanOptional: SkipTLSVerify skip TLS verification for the token issuer.
If not set, configuration is inherited from the default OIDC provider.

Back to top

OIDCSettings

OIDCSettings contains OIDC configuration parameters for enabling authentication mechanism for the cluster.

Appears in:

FieldDescription
issuerURL string
clientID string
clientSecret string
usernameClaim string
groupsClaim string
requiredClaim string
extraScopes string
usernamePrefix string
groupsPrefix string

Back to top

OPAIntegrationSettings

OPAIntegrationSettings configures the usage of OPA (Open Policy Agent) Gatekeeper inside the user cluster.

Appears in:

FieldDescription
enabled booleanEnables OPA Gatekeeper integration.
webhookTimeoutSeconds integerThe timeout in seconds that is set for the Gatekeeper validating webhook admission review calls.
Defaults to 10 (seconds).
experimentalEnableMutation booleanOptional: Enables experimental mutation in Gatekeeper.
controllerResources ResourceRequirementsOptional: ControllerResources is the resource requirements for user cluster gatekeeper controller.
auditResources ResourceRequirementsOptional: AuditResources is the resource requirements for user cluster gatekeeper audit.

Back to top

OSVersions

Underlying type: object

OSVersions defines a map of OS version and the source to download the image.

Appears in:

OpaOptions

Appears in:

FieldDescription
enabled boolean
enforced boolean

Back to top

OpenStack

Appears in:

FieldDescription
enforceCustomDisk booleanEnforceCustomDisk will enforce the custom disk option for machines for the dashboard.

Back to top

Openstack

Appears in:

FieldDescription
enabled booleanOnly enabled presets will be available in the KKP dashboard.
datacenter stringIf datacenter is set, this preset is only applicable to the
configured datacenter.
useToken boolean
applicationCredentialID string
applicationCredentialSecret string
username string
password string
project stringProject, formally known as tenant.
projectID stringProjectID, formally known as tenantID.
domain string
network stringNetwork holds the name of the internal network When specified, all worker nodes will be attached to this network. If not specified, a network, subnet & router will be created.
securityGroups string
floatingIPPool stringFloatingIPPool holds the name of the public network The public network is reachable from the outside world and should provide the pool of IP addresses to choose from.
routerID string
subnetID string

Back to top

OpenstackCloudSpec

OpenstackCloudSpec specifies access data to an OpenStack cloud.

Appears in:

FieldDescription
credentialsReference GlobalSecretKeySelector
username string
password string
project stringproject, formally known as tenant.
projectID stringproject id, formally known as tenantID.
domain string
applicationCredentialID string
applicationCredentialSecret string
useToken boolean
token stringUsed internally during cluster creation
network stringNetwork holds the name of the internal network
When specified, all worker nodes will be attached to this network. If not specified, a network, subnet & router will be created.

Note that the network is internal if the “External” field is set to false | | securityGroups string | | | nodePortsAllowedIPRange string | A CIDR range that will be used to allow access to the node port range in the security group to. Only applies if the security group is generated by KKP and not preexisting. If NodePortsAllowedIPRange nor NodePortsAllowedIPRanges is set, the node port range can be accessed from anywhere. | | nodePortsAllowedIPRanges NetworkRanges | Optional: CIDR ranges that will be used to allow access to the node port range in the security group to. Only applies if the security group is generated by KKP and not preexisting. If NodePortsAllowedIPRange nor NodePortsAllowedIPRanges is set, the node port range can be accessed from anywhere. | | floatingIPPool string | FloatingIPPool holds the name of the public network The public network is reachable from the outside world and should provide the pool of IP addresses to choose from.

When specified, all worker nodes will receive a public ip from this floating ip pool

Note that the network is external if the “External” field is set to true | | routerID string | | | subnetID string | | | ipv6SubnetID string | IPv6SubnetID holds the ID of the subnet used for IPv6 networking. If not provided, a new subnet will be created if IPv6 is enabled. | | ipv6SubnetPool string | IPv6SubnetPool holds the name of the subnet pool used for creating new IPv6 subnets. If not provided, the default IPv6 subnet pool will be used. | | useOctavia boolean | Whether or not to use Octavia for LoadBalancer type of Service implementation instead of using Neutron-LBaaS. Attention:Openstack CCM use Octavia as default load balancer implementation since v1.17.0

Takes precedence over the ‘use_octavia’ flag provided at datacenter level if both are specified. | | enableIngressHostname boolean | Enable the enable-ingress-hostname cloud provider option on the Openstack CCM. Can only be used with the external CCM and might be deprecated and removed in future versions as it is considered a workaround for the PROXY protocol to preserve client IPs. | | ingressHostnameSuffix string | Set a specific suffix for the hostnames used for the PROXY protocol workaround that is enabled by EnableIngressHostname. The suffix is set to nip.io by default. Can only be used with the external CCM and might be deprecated and removed in future versions as it is considered a workaround only. | | cinderTopologyEnabled boolean | Flag to configure enablement of topology support for the Cinder CSI plugin. This requires Nova and Cinder to have matching availability zones configured. |

Back to top

OpenstackNodeSizeRequirements

Underlying type: [struct{MinimumVCPUs int "json:\"minimumVCPUs,omitempty\""; MinimumMemory int "json:\"minimumMemory,omitempty\""}](#struct{minimumvcpus-int-"json:\"minimumvcpus,omitempty\"";-minimummemory-int-"json:\"minimummemory,omitempty\""})

Appears in:

OperatingSystemManager

OperatingSystemManager configures the image repo and the tag version for osm deployment.

Appears in:

FieldDescription
imageRepository stringImageRepository is used to override the OperatingSystemManager image repository.
It is recommended to use this field only for development, tests and PoC purposes. For production environments.
it is not recommended, to use this field due to compatibility with the overall KKP stack.
imageTag stringImageTag is used to override the OperatingSystemManager image.
It is recommended to use this field only for development, tests and PoC purposes. For production environments.
it is not recommended, to use this field due to compatibility with the overall KKP stack.

Back to top

OperatingSystemProfileList

Underlying type: OperatingSystem]string

OperatingSystemProfileList defines a map of operating system and the OperatingSystemProfile to use.

Appears in:

OperationType

Underlying type: string

OperationType is the type defining the operations triggering the compatibility check (CREATE or UPDATE).

Appears in:

Packet

Appears in:

FieldDescription
enabled booleanOnly enabled presets will be available in the KKP dashboard.
datacenter stringIf datacenter is set, this preset is only applicable to the
configured datacenter.
apiKey string
projectID string
billingCycle string

Back to top

PacketCloudSpec

PacketCloudSpec specifies access data to a Packet cloud.

Appears in:

FieldDescription
credentialsReference GlobalSecretKeySelector
apiKey string
projectID string
billingCycle string

Back to top

Parameters

Underlying type: RawMessage

Appears in:

PreAllocatedDataVolume

Appears in:

FieldDescription
name string
annotations object (keys:string, values:string)
url string
size string
storageClass string

Back to top

Preset

Presets are preconfigured cloud provider credentials that can be applied to new clusters. This frees end users from having to know the actual credentials used for their clusters.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringPreset
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec PresetSpec

Back to top

PresetList

PresetList is the type representing a PresetList.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringPresetList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items Preset arrayList of presets

Back to top

PresetSpec

Presets specifies default presets for supported providers.

Appears in:

FieldDescription
digitalocean DigitaloceanAccess data for DigitalOcean.
hetzner HetznerAccess data for Hetzner.
azure AzureAccess data for Microsoft Azure Cloud.
vsphere VSphereAccess data for vSphere.
aws AWSAccess data for Amazon Web Services(AWS) Cloud.
openstack OpenstackAccess data for OpenStack.
packet PacketAccess data for Packet Cloud.
gcp GCPAccess data for Google Cloud Platform(GCP).
kubevirt KubevirtAccess data for KuberVirt.
alibaba AlibabaAccess data for Alibaba Cloud.
anexia AnexiaAccess data for Anexia.
nutanix NutanixAccess data for Nutanix.
vmwareclouddirector VMwareCloudDirectorAccess data for VMware Cloud Director.
gke GKEAccess data for Google Kubernetes Engine(GKE).
eks EKSAccess data for Amazon Elastic Kubernetes Service(EKS).
aks AKSAccess data for Azure Kubernetes Service(AKS).
requiredEmails string arrayRequiredEmails is a list of e-mail addresses that this presets should
be restricted to. Each item in the list can be either a full e-mail
address or just a domain name. This restriction is only enforced in the
KKP API.
projects string arrayProjects is a list of project IDs that this preset is limited to.
enabled booleanOnly enabled presets will be available in the KKP dashboard.

Back to top

Project

Project is the type describing a project. A project is a collection of SSH keys, clusters and members. Members are assigned by creating UserProjectBinding objects.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringProject
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec ProjectSpecSpec describes the configuration of the project.
status ProjectStatusStatus holds the current status of the project.

Back to top

ProjectList

ProjectList is a collection of projects.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringProjectList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items Project arrayItems is the list of the projects.

Back to top

ProjectPhase

Underlying type: string

Appears in:

ProjectSpec

ProjectSpec is a specification of a project.

Appears in:

FieldDescription
name stringName is the human-readable name given to the project.

Back to top

ProjectStatus

ProjectStatus represents the current status of a project.

Appears in:

FieldDescription
phase ProjectPhasePhase describes the project phase. New projects are in the Inactive
phase; after being reconciled they move to Active and during deletion
they are Terminating.

Back to top

ProviderConfiguration

Appears in:

FieldDescription
openStack OpenStackOpenStack are the configurations for openstack provider.
vmwareCloudDirector VMwareCloudDirectorSettingsVMwareCloudDirector are the configurations for VMware Cloud Director provider.

Back to top

ProviderPreset

Appears in:

FieldDescription
enabled booleanOnly enabled presets will be available in the KKP dashboard.
datacenter stringIf datacenter is set, this preset is only applicable to the
configured datacenter.

Back to top

ProxySettings

ProxySettings allow configuring a HTTP proxy for the controlplanes and nodes.

Appears in:

FieldDescription
httpProxy ProxyValueOptional: If set, this proxy will be configured for both HTTP and HTTPS.
noProxy ProxyValueOptional: If set this will be set as NO_PROXY environment variable on the node;
The value must be a comma-separated list of domains for which no proxy
should be used, e.g. “*.example.com,internal.dev”.
Note that the in-cluster apiserver URL will be automatically prepended
to this value.

Back to top

ProxyValue

Underlying type: string

Appears in:

ResourceDetails

ResourceDetails holds the CPU, Memory and Storage quantities.

Appears in:

ResourceQuota

ResourceQuota specifies the amount of cluster resources a project can use.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringResourceQuota
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec ResourceQuotaSpecSpec describes the desired state of the resource quota.
status ResourceQuotaStatusStatus holds the current state of the resource quota.

Back to top

ResourceQuotaList

ResourceQuotaList is a collection of resource quotas.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringResourceQuotaList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items ResourceQuota arrayItems is the list of the resource quotas.

Back to top

ResourceQuotaSpec

ResourceQuotaSpec describes the desired state of a resource quota.

Appears in:

FieldDescription
subject SubjectSubject specifies to which entity the quota applies to.
quota ResourceDetailsQuota specifies the current maximum allowed usage of resources.

Back to top

ResourceQuotaStatus

ResourceQuotaStatus describes the current state of a resource quota.

Appears in:

FieldDescription
globalUsage ResourceDetailsGlobalUsage is holds the current usage of resources for all seeds.
localUsage ResourceDetailsLocalUsage is holds the current usage of resources for the local seed.

Back to top

RuleGroup

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringRuleGroup
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec RuleGroupSpec

Back to top

RuleGroupList

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringRuleGroupList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items RuleGroup array

Back to top

RuleGroupSpec

Appears in:

FieldDescription
isDefault booleanIsDefault indicates whether the ruleGroup is default
ruleGroupType RuleGroupTypeRuleGroupType is the type of this ruleGroup applies to. It can be Metrics or Logs.
cluster ObjectReferenceCluster is the reference to the cluster the ruleGroup should be created in. All fields
except for the name are ignored.
data integer arrayData contains the RuleGroup data. Ref: https://prometheus.io/docs/prometheus/latest/configuration/recording_rules/#rule_group

Back to top

RuleGroupType

Underlying type: string

Appears in:

SSHKeySpec

Appears in:

FieldDescription
name stringName is the human readable name for this SSH key.
owner stringOwner is the name of the User object that owns this SSH key.
Deprecated: This field is not used anymore.
project stringProject is the name of the Project object that this SSH key belongs to.
This field is immutable.
clusters string arrayClusters is the list of cluster names that this SSH key is assigned to.
fingerprint stringFingerprint is calculated server-side based on the supplied public key
and doesn’t need to be set by clients.
publicKey stringPublicKey is the SSH public key.

Back to top

SecretboxEncryptionConfiguration

SecretboxEncryptionConfiguration defines static key encryption based on the ‘secretbox’ solution for Kubernetes.

Appears in:

FieldDescription
keys SecretboxKey arrayList of ‘secretbox’ encryption keys. The first element of this list is considered
the “primary” key which will be used for encrypting data while writing it. Additional
keys will be used for decrypting data while reading it, if keys higher in the list
did not succeed in decrypting it.

Back to top

SecretboxKey

SecretboxKey stores a key or key reference for encrypting Kubernetes API data at rest with a static key.

Appears in:

FieldDescription
name stringIdentifier of a key, used in various places to refer to the key.
value stringValue contains a 32-byte random key that is base64 encoded. This is the key used
for encryption. Can be generated via `head -c 32 /dev/urandombase64`, for example.
secretRef SecretKeySelectorInstead of passing the sensitive encryption key via the value field, a secret can be
referenced. The key of the secret referenced here needs to hold a key equivalent to the value field.

Back to top

Seed

Seed is the type representing a Seed cluster. Seed clusters host the the control planes for KKP user clusters.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringSeed
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec SeedSpecSpec describes the configuration of the Seed cluster.
status SeedStatusStatus holds the runtime information of the Seed cluster.

Back to top

SeedCondition

Appears in:

FieldDescription
status ConditionStatusStatus of the condition, one of True, False, Unknown.
lastHeartbeatTime TimeLast time we got an update on a given condition.
lastTransitionTime TimeLast time the condition transit from one status to another.
reason string(brief) reason for the condition’s last transition.
message stringHuman readable message indicating details about last transition.

Back to top

SeedConditionType

Underlying type: string

SeedConditionType is used to indicate the type of a seed condition. For all condition types, the true value must indicate success. All condition types must be registered within the AllSeedConditionTypes variable.

Appears in:

SeedList

SeedDatacenterList is the type representing a SeedDatacenterList.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringSeedList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items Seed arrayList of seeds

Back to top

SeedMLASettings

SeedMLASettings allow configuring seed level MLA (Monitoring, Logging & Alerting) stack settings.

Appears in:

FieldDescription
userClusterMLAEnabled booleanOptional: UserClusterMLAEnabled controls whether the user cluster MLA (Monitoring, Logging & Alerting) stack is enabled in the seed.

Back to top

SeedPhase

Underlying type: string

Appears in:

SeedSpec

The spec for a seed cluster.

Appears in:

FieldDescription
country stringOptional: Country of the seed as ISO-3166 two-letter code, e.g. DE or UK.
For informational purposes in the Kubermatic dashboard only.
location stringOptional: Detailed location of the cluster, like “Hamburg” or “Datacenter 7”.
For informational purposes in the Kubermatic dashboard only.
kubeconfig ObjectReferenceA reference to the Kubeconfig of this cluster. The Kubeconfig must
have cluster-admin privileges. This field is mandatory for every
seed, even if there are no datacenters defined yet.
datacenters object (keys:string, values:Datacenter)Datacenters contains a map of the possible datacenters (DCs) in this seed.
Each DC must have a globally unique identifier (i.e. names must be unique
across all seeds).
seedDNSOverwrite stringOptional: This can be used to override the DNS name used for this seed.
By default the seed name is used.
nodeportProxy NodeportProxyConfigNodeportProxy can be used to configure the NodePort proxy service that is
responsible for making user-cluster control planes accessible from the outside.
proxySettings ProxySettingsOptional: ProxySettings can be used to configure HTTP proxy settings on the
worker nodes in user clusters. However, proxy settings on nodes take precedence.
exposeStrategy ExposeStrategyOptional: ExposeStrategy explicitly sets the expose strategy for this seed cluster, if not set, the default provided by the master is used.
mla SeedMLASettingsOptional: MLA allows configuring seed level MLA (Monitoring, Logging & Alerting) stack settings.
defaultComponentSettings ComponentSettingsDefaultComponentSettings are default values to set for newly created clusters.
Deprecated: Use DefaultClusterTemplate instead.
defaultClusterTemplate stringDefaultClusterTemplate is the name of a cluster template of scope “seed” that is used
to default all new created clusters
metering MeteringConfigurationMetering configures the metering tool on user clusters across the seed.
etcdBackupRestore EtcdBackupRestoreEtcdBackupRestore holds the configuration of the automatic etcd backup restores for the Seed;
if this is set, the new backup/restore controllers are enabled for this Seed.
oidcProviderConfiguration OIDCProviderConfigurationOIDCProviderConfiguration allows to configure OIDC provider at the Seed level.
kubelb KubeLBSettingsKubeLB holds the configuration for the kubeLB at the Seed level. This component is responsible for managing load balancers.
Only available in Enterprise Edition.

Back to top

SeedStatus

SeedStatus contains runtime information regarding the seed.

Appears in:

FieldDescription
phase SeedPhasePhase contains a human readable text to indicate the seed cluster status. No logic should be tied
to this field, as its content can change in between KKP releases.
clusters integerClusters is the total number of user clusters that exist on this seed.
versions SeedVersionsStatusVersions contains information regarding versions of components in the cluster and the cluster
itself.
conditions object (keys:SeedConditionType, values:SeedCondition)Conditions contains conditions the seed is in, its primary use case is status signaling
between controllers or between controllers and the API.

Back to top

SeedVersionsStatus

SeedVersionsStatus contains information regarding versions of components in the cluster and the cluster itself.

Appears in:

FieldDescription
kubermatic stringKubermatic is the version of the currently deployed KKP components. Note that a permanent
version skew between master and seed is not supported and KKP setups should never run for
longer times with a skew between the clusters.
cluster stringCluster is the Kubernetes version of the cluster’s control plane.

Back to top

ServiceAccountSettings

Appears in:

FieldDescription
tokenVolumeProjectionEnabled boolean
issuer stringIssuer is the identifier of the service account token issuer
If this is not specified, it will be set to the URL of apiserver by default
apiAudiences string arrayAPIAudiences are the Identifiers of the API
If this is not specified, it will be set to a single element list containing the issuer URL

Back to top

SettingSpec

Appears in:

FieldDescription
customLinks CustomLinksCustomLinks are additional links that can be shown the dashboard’s footer.
defaultNodeCount integerDefaultNodeCount is the default number of replicas for the initial MachineDeployment.
displayDemoInfo booleanDisplayDemoInfo controls whether a “Demo System” hint is shown in the footer.
displayAPIDocs booleanDisplayDemoInfo controls whether a a link to the KKP API documentation is shown in the footer.
displayTermsOfService booleanDisplayDemoInfo controls whether a a link to TOS is shown in the footer.
enableDashboard booleanEnableDashboard enables the link to the Kubernetes dashboard for a user cluster.
enableWebTerminal booleanEnableWebTerminal enables the Web Terminal feature for the user clusters.
Deprecated: EnableWebTerminal is deprecated and should be removed in KKP 2.27+. Please use webTerminalOptions instead. When webTerminalOptions.enabled is set then this field will be ignored.
enableShareCluster booleanEnableShareCluster enables the Share Cluster feature for the user clusters.
enableOIDCKubeconfig boolean
enableClusterBackup booleanEnableClusterBackup enables the Cluster Backup feature in the dashboard.
disableAdminKubeconfig booleanDisableAdminKubeconfig disables the admin kubeconfig functionality on the dashboard.
userProjectsLimit integerUserProjectsLimit is the maximum number of projects a user can create.
restrictProjectCreation boolean
restrictProjectDeletion boolean
enableExternalClusterImport boolean
cleanupOptions CleanupOptionsCleanupOptions control what happens when a cluster is deleted via the dashboard.
opaOptions OpaOptions
mlaOptions MlaOptions
mlaAlertmanagerPrefix string
mlaGrafanaPrefix string
notifications NotificationsOptionsNotifications are the configuration for notifications on dashboard.
providerConfiguration ProviderConfigurationProviderConfiguration are the cloud provider specific configurations on dashboard.
webTerminalOptions WebTerminalOptionsWebTerminalOptions are the configurations for the Web Terminal feature.
machineDeploymentVMResourceQuota MachineFlavorFilterMachineDeploymentVMResourceQuota is used to filter out allowed machine flavors based on the specified resource limits like CPU, Memory, and GPU etc.
allowedOperatingSystems allowedOperatingSystemsAllowedOperatingSystems shows if the operating system is allowed to be use in the machinedeployment.
defaultQuota DefaultProjectResourceQuotaDefaultProjectResourceQuota allows to configure a default project resource quota which
will be set for all projects that do not have a custom quota already set. EE-version only.
machineDeploymentOptions MachineDeploymentOptions
disableChangelogPopup booleanDisableChangelogPopup disables the changelog popup in KKP dashboard.

Back to top

StatefulSetSettings

Appears in:

FieldDescription
resources ResourceRequirements

Back to top

Subject

Subject describes the entity to which the quota applies to.

Appears in:

FieldDescription
name stringName of the quota subject.

Back to top

SubnetCIDR

Underlying type: string

SubnetCIDR is used to store IPv4/IPv6 CIDR.

Appears in:

SystemApplicationsConfiguration

SystemApplicationsConfiguration contains configuration for system Applications (e.g. CNI).

Appears in:

FieldDescription
helmRepository stringHelmRepository specifies OCI repository containing Helm charts of system Applications e.g. oci://localhost:5000/myrepo.
helmRegistryConfigFile SecretKeySelectorHelmRegistryConfigFile optionally holds the ref and key in the secret for the OCI registry credential file.
The value is dockercfg file that follows the same format rules as ~/.docker/config.json
The Secret must exist in the namespace where KKP is installed (default is “kubermatic”).
The Secret must be annotated with apps.kubermatic.k8c.io/secret-type: set to “helm”.

Back to top

Update

Update represents an update option for a user cluster.

Appears in:

FieldDescription
from stringFrom is the version from which an update is allowed. Wildcards are allowed, e.g. “1.18.*”.
to stringTo is the version to which an update is allowed.
Must be a valid version if automatic is set to true, e.g. “1.20.13”.
Can be a wildcard otherwise, e.g. “1.20.*”.
automatic booleanAutomatic controls whether this update is executed automatically
for the control plane of all matching user clusters.
automaticNodeUpdate booleanAutomatic controls whether this update is executed automatically
for the worker nodes of all matching user clusters.

Back to top

UpdateWindow

UpdateWindow allows defining windows for maintenance tasks related to OS updates. This is only applied to cluster nodes using Flatcar Linux. The reference time for this is the node system time and might differ from the user’s timezone, which needs to be considered when configuring a window.

Appears in:

FieldDescription
start stringSets the start time of the update window. This can be a time of day in 24h format, e.g. 22:30,
or a day of week plus a time of day, for example Mon 21:00. Only short names for week days are supported,
i.e. Mon, Tue, Wed, Thu, Fri, Sat and Sun.
length stringSets the length of the update window beginning with the start time. This needs to be a valid duration
as parsed by Go’s time.ParseDuration (https://pkg.go.dev/time#ParseDuration), e.g. 2h.

Back to top

User

User specifies a KKP user. Users can be either humans or KKP service accounts.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringUser
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec UserSpecSpec describes a KKP user.
status UserStatusStatus holds the information about the KKP user.

Back to top

UserList

UserList is a list of users.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringUserList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items User arrayItems is the list of KKP users.

Back to top

UserProjectBinding

UserProjectBinding specifies a binding between a user and a project This resource is used by the user management to manipulate members of the given project.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringUserProjectBinding
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec UserProjectBindingSpecSpec describes a KKP user and project binding.

Back to top

UserProjectBindingList

UserProjectBindingList is a list of KKP user and project bindings.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringUserProjectBindingList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items UserProjectBinding arrayItems is the list of KKP user and project bindings.

Back to top

UserProjectBindingSpec

UserProjectBindingSpec specifies a user and project binding.

Appears in:

FieldDescription
userEmail stringUserEmail is the email of the user that is bound to the given project.
projectID stringProjectID is the name of the target project.
group stringGroup is the user’s group, determining their permissions within the project.
Must be one of owners, editors, viewers or projectmanagers.

Back to top

UserSSHKey

UserSSHKey specifies a users UserSSHKey.

Appears in:

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringUserSSHKey
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec SSHKeySpec

Back to top

UserSSHKeyList

UserSSHKeyList specifies a users UserSSHKey.

FieldDescription
apiVersion stringkubermatic.k8c.io/v1
kind stringUserSSHKeyList
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items UserSSHKey array

Back to top

UserSettings

UserSettings represent an user settings.

Appears in:

FieldDescription
selectedTheme string
itemsPerPage integer
selectedProjectID string
selectProjectTableView boolean
collapseSidenav boolean
displayAllProjectsForAdmin boolean
lastSeenChangelogVersion string
useClustersView boolean

Back to top

UserSpec

UserSpec specifies a user.

Appears in:

FieldDescription
id stringID is an unused legacy field.
Deprecated: do not set this field anymore.
name stringName is the full name of this user.
email stringEmail is the email address of this user. Emails must be globally unique across
all KKP users.
admin booleanIsAdmin defines whether this user is an administrator with additional permissions.
Admins can for example see all projects and clusters in the KKP dashboard.
groups string arrayGroups holds the information to which groups the user belongs to. Set automatically when logging in to the
KKP API, and used by the KKP API.
project stringProject is the name of the project that this service account user is tied to. This
field is only applicable to service accounts and regular users must not set this field.
settings UserSettingsSettings contains both user-configurable and system-owned configuration for the
KKP dashboard.
invalidTokensReference GlobalSecretKeySelectorInvalidTokensReference is a reference to a Secret that contains invalidated
login tokens. The tokens are used to provide a safe logout mechanism.

Back to top

UserStatus

UserStatus stores status information about a user.

Appears in:

FieldDescription
lastSeen Time

Back to top

VMwareCloudDirector

Appears in:

FieldDescription
enabled booleanOnly enabled presets will be available in the KKP dashboard.
datacenter stringIf datacenter is set, this preset is only applicable to the
configured datacenter.
username stringThe VMware Cloud Director user name.
password stringThe VMware Cloud Director user password.
apiToken stringThe VMware Cloud Director API token.
vdc stringThe organizational virtual data center.
organization stringThe name of organization to use.
ovdcNetwork stringThe name of organizational virtual data center network that will be associated with the VMs and vApp.
Deprecated: OVDCNetwork has been deprecated starting with KKP 2.25 and will be removed in KKP 2.27+. It is recommended to use OVDCNetworks instead.
ovdcNetworks string arrayOVDCNetworks is the list of organizational virtual data center networks that will be attached to the vApp and can be consumed the VMs.

Back to top

VMwareCloudDirectorCSIConfig

Appears in:

FieldDescription
storageProfile stringThe name of the storage profile to use for disks created by CSI driver
filesystem stringFilesystem to use for named disks, defaults to “ext4”

Back to top

VMwareCloudDirectorCloudSpec

VMwareCloudDirectorCloudSpec specifies access data to VMware Cloud Director cloud.

Appears in:

FieldDescription
credentialsReference GlobalSecretKeySelector
username stringThe VMware Cloud Director user name.
password stringThe VMware Cloud Director user password.
apiToken stringThe VMware Cloud Director API token.
organization stringThe name of organization to use.
vdc stringThe organizational virtual data center.
ovdcNetwork stringThe name of organizational virtual data center network that will be associated with the VMs and vApp.
Deprecated: OVDCNetwork has been deprecated starting with KKP 2.25 and will be removed in KKP 2.27+. It is recommended to use OVDCNetworks instead.
ovdcNetworks string arrayOVDCNetworks is the list of organizational virtual data center networks that will be attached to the vApp and can be consumed the VMs.
vapp stringVApp used for isolation of VMs and their associated network
csi VMwareCloudDirectorCSIConfigConfig for CSI driver

Back to top

VMwareCloudDirectorSettings

Appears in:

FieldDescription
ipAllocationModes ipAllocationMode arrayIPAllocationModes are the allowed IP allocation modes for the VMware Cloud Director provider. If not set, all modes are allowed.

Back to top

VSphere

Appears in:

FieldDescription
enabled booleanOnly enabled presets will be available in the KKP dashboard.
datacenter stringIf datacenter is set, this preset is only applicable to the
configured datacenter.
username stringThe vSphere user name.
password stringThe vSphere user password.
vmNetName stringDeprecated: Use networks instead.
networks string arrayList of vSphere networks.
datastore stringDatastore to be used for storing virtual machines and as a default for dynamic volume provisioning, it is mutually exclusive with DatastoreCluster.
datastoreCluster stringDatastoreCluster to be used for storing virtual machines, it is mutually exclusive with Datastore.
resourcePool stringResourcePool is used to manage resources such as cpu and memory for vSphere virtual machines. The resource pool should be defined on vSphere cluster level.
basePath stringBasePath configures a vCenter folder path that KKP will create an individual cluster folder in.
If it’s an absolute path, the RootPath configured in the datacenter will be ignored. If it is a relative path,
the BasePath part will be appended to the RootPath to construct the full path. For both cases,
the full folder structure needs to exist. KKP will only try to create the cluster folder.

Back to top

VSphereCloudSpec

VSphereCloudSpec specifies access data to VSphere cloud.

Appears in:

FieldDescription
credentialsReference GlobalSecretKeySelector
username stringThe vSphere user name.
password stringThe vSphere user password.
vmNetName stringThe name of the vSphere network.
Deprecated: Use networks instead.
networks string arrayList of vSphere networks.
folder stringFolder to be used to group the provisioned virtual
machines.
basePath stringOptional: BasePath configures a vCenter folder path that KKP will create an individual cluster folder in.
If it’s an absolute path, the RootPath configured in the datacenter will be ignored. If it is a relative path,
the BasePath part will be appended to the RootPath to construct the full path. For both cases,
the full folder structure needs to exist. KKP will only try to create the cluster folder.
datastore stringDatastore to be used for storing virtual machines and as a default for
dynamic volume provisioning, it is mutually exclusive with
DatastoreCluster.
datastoreCluster stringDatastoreCluster to be used for storing virtual machines, it is mutually
exclusive with Datastore.
storagePolicy stringStoragePolicy to be used for storage provisioning
resourcePool stringResourcePool is used to manage resources such as cpu and memory for vSphere virtual machines. The resource pool
should be defined on vSphere cluster level.
infraManagementUser VSphereCredentialsThis user will be used for everything except cloud provider functionality
tags VSphereTagTags represents the tags that are attached or created on the cluster level, that are then propagated down to the
MachineDeployments. In order to attach tags on MachineDeployment, users must create the tag on a cluster level first
then attach that tag on the MachineDeployment.

Back to top

VSphereCredentials

VSphereCredentials credentials represents a credential for accessing vSphere.

Appears in:

FieldDescription
username string
password string

Back to top

VSphereTag

VSphereTag represents the tags that are attached or created on the cluster level, that are then propagated down to the MachineDeployments. In order to attach tags on MachineDeployment, users must create the tag on a cluster level first then attach that tag on the MachineDeployment.

Appears in:

FieldDescription
tags string arrayTags represents the name of the created tags.
categoryID stringCategoryID is the id of the vsphere category that the tag belongs to. If the category id is left empty, the default
category id for the cluster will be used.

Back to top

WebTerminalOptions

Appears in:

FieldDescription
enabled booleanEnabled enables the Web Terminal feature for the user clusters.
enableInternetAccess booleanEnableInternetAccess enables the Web Terminal feature to access the internet.
additionalEnvironmentVariables EnvVar arrayAdditionalEnvironmentVariables are the additional environment variables that can be set for the Web Terminal.

Back to top