Supported Resource Types
April 1, 2025About 1 min
The Operator supports the following resource types (known as Kind
's):
KurrentDB
KurrentDBBackup
KurrentDB
This resource type is used to define a database deployment.
API
Field | Required | Description |
---|---|---|
replicas integer | Yes | Number of nodes in a database cluster (1 or 3) |
image string | Yes | KurrentDB container image URL |
resources ResourceRequirements | No | Database container resource limits and requests |
storage PersistentVolumeClaim | Yes | Persistent volume claim settings for the underlying data volume |
network KurrentDbNetwork | Yes | Defines the network configuration to use with the database |
configuration yaml | No | Additional configuration to use with the database |
sourceBackup string | No | Backup name to restore a cluster from |
security KurrentDbSecurity | No | Security configuration to use for the database. This is optional, if not specified the cluster will be created without security enabled. |
licenseSecret SecretKeySelector | No | A secret that contains the Enterprise license for the database |
KurrentDbNetwork
Field | Required | Description |
---|---|---|
domain string | Yes | Domain used for external DNS e.g. advertised address exposed in the gossip state |
loadBalancer KurrentDbLoadBalancer | Yes | Domain used for external DNS e.g. advertised address exposed in the gossip state |
KurrentDbLoadBalancer
Field | Required | Description |
---|---|---|
enabled boolean | Yes | Determines if a load balancer should be deployed for each node |
allowedIps string array | No | List of IP ranges allowed by the load balancer (default will allow all access) |
KurrentDbSecurity
Field | Required | Description |
---|---|---|
certificateSubjectName string | No | Subject name used in the TLS certificate (this maps directly to the database property CertificateSubjectName ) |
certificateReservedNodeCommonName string | No | Common name for the TLS certificate (this maps directly to the database property CertificateReservedNodeCommonName ) |
certificateAuthoritySecret CertificateSecret | No | Secret containing the CA TLS certificate |
certificateSecret CertificateSecret | Yes | Secret containing the TLS certificate to use |
CertificateSecret
Field | Required | Description |
---|---|---|
name string | Yes | Name of the secret holding the certificate details |
keyName string | Yes | Key within the secret containing the TLS certificate |
privateKeyName string | No | Key within the secret containing the TLS certificate private key |
KurrentDBBackup
This resource type is used to define a backup for an existing database deployment.
Important
Resources of this type must be created within the same namespace as the target database cluster to backup.
API
Field | Required | Description |
---|---|---|
clusterName string | Yes | Name of the source database cluster |
nodeName string | No | Specific node name within the database cluster to use as the backup. If this is not specified, the leader will be picked as the source. |
volumeSnapshotClassName string | Yes | The name of the underlying volume snapshot class to use. |
Contributors
Christopher Channing