# API Docs This Document documents the types introduced by the FoundationDB Operator to be consumed by users. > Note this document is generated from code comments. When contributing a change to this document please do so by changing the code comments.
- BuggifyConfig
- ClusterGenerationStatus
- ClusterHealth
- ConnectionString
- ContainerOverrides
- DataCenter
- DatabaseConfiguration
- FdbVersion
- FoundationDBCluster
- FoundationDBClusterAutomationOptions
- FoundationDBClusterFaultDomain
- FoundationDBClusterList
- FoundationDBClusterSpec
- FoundationDBClusterStatus
- FoundationDBStatus
- FoundationDBStatusBackupInfo
- FoundationDBStatusBackupTag
- FoundationDBStatusClientDBStatus
- FoundationDBStatusClusterClientInfo
- FoundationDBStatusClusterInfo
- FoundationDBStatusConnectedClient
- FoundationDBStatusCoordinator
- FoundationDBStatusCoordinatorInfo
- FoundationDBStatusDataStatistics
- FoundationDBStatusLayerInfo
- FoundationDBStatusLocalClientInfo
- FoundationDBStatusMovingData
- FoundationDBStatusProcessInfo
- FoundationDBStatusSupportedVersion
- LockOptions
- PendingRemovalState
- ProcessAddress
- ProcessCounts
- ProcessGroupCondition
- ProcessGroupStatus
- ProcessSettings
- Region
- RequiredAddressSet
- RoleCounts
- ServiceConfig
- VersionFlags
BuggifyConfig provides options for injecting faults into a cluster for testing.
Field | Description | Scheme | Required |
---|---|---|---|
noSchedule | NoSchedule defines a list of instance IDs that should fail to schedule. | []string | false |
ClusterGenerationStatus stores information on which generations have reached different stages in reconciliation for the cluster.
Field | Description | Scheme | Required |
---|---|---|---|
reconciled | Reconciled provides the last generation that was fully reconciled. | int64 | false |
needsConfigurationChange | NeedsConfigurationChange provides the last generation that is pending a change to configuration. | int64 | false |
needsCoordinatorChange | NeedsCoordinatorChange provides the last generation that is pending a change to its coordinators. | int64 | false |
needsBounce | NeedsBounce provides the last generation that is pending a bounce of fdbserver. | int64 | false |
needsPodDeletion | NeedsPodDeletion provides the last generation that is pending pods being deleted and recreated. | int64 | false |
needsShrink | NeedsShrink provides the last generation that is pending pods being excluded and removed. | int64 | false |
needsGrow | NeedsGrow provides the last generation that is pending pods being added. | int64 | false |
needsMonitorConfUpdate | NeedsMonitorConfUpdate provides the last generation that needs an update through the fdbmonitor conf. | int64 | false |
missingDatabaseStatus | DatabaseUnavailable provides the last generation that could not complete reconciliation due to the database being unavailable. | int64 | false |
hasExtraListeners | HasExtraListeners provides the last generation that could not complete reconciliation because it has more listeners than it is supposed to. | int64 | false |
needsServiceUpdate | NeedsServiceUpdate provides the last generation that needs an update to the service config. | int64 | false |
needsBackupAgentUpdate | NeedsBackupAgentUpdate provides the last generation that could not complete reconciliation because the backup agent deployment needs to be updated. Deprecated: This needs to get moved into FoundationDBBackup | int64 | false |
hasPendingRemoval | HasPendingRemoval provides the last generation that has pods that have been excluded but are pending being removed. A cluster in this state is considered reconciled, but we track this in the status to allow users of the operator to track when the removal is fully complete. | int64 | false |
hasFailingPods | HasFailingPods provides the last generation that has pods that are failing to start. | int64 | false |
ClusterHealth represents different views into health in the cluster status.
Field | Description | Scheme | Required |
---|---|---|---|
available | Available reports whether the database is accepting reads and writes. | bool | false |
healthy | Healthy reports whether the database is in a fully healthy state. | bool | false |
fullReplication | FullReplication reports whether all data are fully replicated according to the current replication policy. | bool | false |
dataMovementPriority | DataMovementPriority reports the priority of the highest-priority data movement in the cluster. | int | false |
ConnectionString models the contents of a cluster file in a structured way
Field | Description | Scheme | Required |
---|---|---|---|
DatabaseName | DatabaseName provides an identifier for the database which persists across coordinator changes. | string | false |
GenerationID | GenerationID provides a unique ID for the current generation of coordinators. | string | false |
Coordinators | Coordinators provides the addresses of the current coordinators. | []string | false |
ContainerOverrides provides options for customizing a container created by the operator.
Field | Description | Scheme | Required |
---|---|---|---|
enableTls | EnableTLS controls whether we should be listening on a TLS connection. | bool | false |
peerVerificationRules | PeerVerificationRules provides the rules for what client certificates the process should accept. | string | false |
env | Env provides environment variables. Deprecated: Use the PodTemplate field instead. | []corev1.EnvVar | false |
volumeMounts | VolumeMounts provides volume mounts. Deprecated: Use the PodTemplate field instead. | []corev1.VolumeMount | false |
imageName | ImageName provides the name of the image to use for the container, without the version tag. Deprecated: Use the PodTemplate field instead. | string | false |
securityContext | SecurityContext provides the container's security context. Deprecated: Use the PodTemplate field instead. | *corev1.SecurityContext | false |
DataCenter represents a data center in the region configuration
Field | Description | Scheme | Required |
---|---|---|---|
id | The ID of the data center. This must match the dcid locality field. | string | false |
priority | The priority of this data center when we have to choose a location. Higher priorities are preferred over lower priorities. | int | false |
satellite | Satellite indicates whether the data center is serving as a satellite for the region. A value of 1 indicates that it is a satellite, and a value of 0 indicates that it is not a satellite. | int | false |
DatabaseConfiguration represents the configuration of the database
Field | Description | Scheme | Required |
---|---|---|---|
redundancy_mode | RedundancyMode defines the core replication factor for the database. | string | false |
storage_engine | StorageEngine defines the storage engine the database uses. | string | false |
usable_regions | UsableRegions defines how many regions the database should store data in. | int | false |
regions | Regions defines the regions that the database can replicate in. | []Region | false |
RoleCounts | RoleCounts defines how many processes the database should recruit for each role. | RoleCounts | true |
VersionFlags | VersionFlags defines internal flags for testing new features in the database. | VersionFlags | true |
FdbVersion represents a version of FoundationDB. This provides convenience methods for checking features available in different versions.
Field | Description | Scheme | Required |
---|---|---|---|
Major | Major is the major version | int | false |
Minor | Minor is the minor version | int | false |
Patch | Patch is the patch version | int | false |
FoundationDBCluster is the Schema for the foundationdbclusters API
Field | Description | Scheme | Required |
---|---|---|---|
metadata | metav1.ObjectMeta | false | |
spec | FoundationDBClusterSpec | false | |
status | FoundationDBClusterStatus | false |
FoundationDBClusterAutomationOptions provides flags for enabling or disabling operations that can be performed on a cluster.
Field | Description | Scheme | Required |
---|---|---|---|
configureDatabase | ConfigureDatabase defines whether the operator is allowed to reconfigure the database. | *bool | false |
killProcesses | KillProcesses defines whether the operator is allowed to bounce fdbserver processes. | *bool | false |
deletePods | DeletePods defines whether the operator is allowed to delete pods in order to recreate them. | *bool | false |
FoundationDBClusterFaultDomain describes the fault domain that a cluster is replicated across.
Field | Description | Scheme | Required |
---|---|---|---|
key | Key provides a topology key for the fault domain to replicate across. | string | false |
value | Value provides a harcoded value to use for the zoneid for the pods. | string | false |
valueFrom | ValueFrom provides a field selector to use as the source of the fault domain. | string | false |
zoneCount | ZoneCount provides the number of fault domains in the data center where these processes are running. This is only used in the kubernetes-cluster fault domain strategy. |
int | false |
zoneIndex | ZoneIndex provides the index of this Kubernetes cluster in the list of KCs in the data center. This is only used in the kubernetes-cluster fault domain strategy. |
int | false |
FoundationDBClusterList contains a list of FoundationDBCluster
Field | Description | Scheme | Required |
---|---|---|---|
metadata | metav1.ListMeta | false | |
items | []FoundationDBCluster | true |
FoundationDBClusterSpec defines the desired state of a cluster.
Field | Description | Scheme | Required |
---|---|---|---|
version | Version defines the version of FoundationDB the cluster should run. | string | true |
sidecarVersions | SidecarVersions defines the build version of the sidecar to run. This maps an FDB version to the corresponding sidecar build version. | map[string]int | false |
databaseConfiguration | DatabaseConfiguration defines the database configuration. | DatabaseConfiguration | false |
processes | Processes defines process-level settings. | map[string]ProcessSettings | false |
processCounts | ProcessCounts defines the number of processes to configure for each process class. You can generally omit this, to allow the operator to infer the process counts based on the database configuration. | ProcessCounts | false |
seedConnectionString | SeedConnectionString provides a connection string for the initial reconciliation. After the initial reconciliation, this will not be used. | string | false |
faultDomain | FaultDomain defines the rules for what fault domain to replicate across. | FoundationDBClusterFaultDomain | false |
instancesToRemove | InstancesToRemove defines the instances that we should remove from the cluster. This list contains the instance IDs. | []string | false |
instancesToRemoveWithoutExclusion | InstancesToRemoveWithoutExclusion defines the instances that we should remove from the cluster without excluding them. This list contains the instance IDs. This should be used for cases where a pod does not have an IP address and you want to remove it and destroy its volume without confirming the data is fully replicated. | []string | false |
configMap | ConfigMap allows customizing the config map the operator creates. | *corev1.ConfigMap | false |
mainContainer | MainContainer defines customization for the foundationdb container. | ContainerOverrides | false |
sidecarContainer | SidecarContainer defines customization for the foundationdb-kubernetes-sidecar container. | ContainerOverrides | false |
trustedCAs | TrustedCAs defines a list of root CAs the cluster should trust, in PEM format. | []string | false |
sidecarVariables | SidecarVariables defines Ccustom variables that the sidecar should make available for substitution in the monitor conf file. | []string | false |
logGroup | LogGroup defines the log group to use for the trace logs for the cluster. | string | false |
dataCenter | DataCenter defines the data center where these processes are running. | string | false |
dataHall | DataHall defines the data hall where these processes are running. | string | false |
automationOptions | AutomationOptions defines customization for enabling or disabling certain operations in the operator. | FoundationDBClusterAutomationOptions | false |
instanceIDPrefix | InstanceIDPrefix defines a prefix to append to the instance IDs in the locality fields. | string | false |
updatePodsByReplacement | UpdatePodsByReplacement determines whether we should update pod config by replacing the pods rather than deleting them. | bool | false |
lockOptions | LockOptions allows customizing how we manage locks for global operations. | LockOptions | false |
services | Services defines the configuration for services that sit in front of our pods. | ServiceConfig | false |
ignoreUpgradabilityChecks | IgnoreUpgradabilityChecks determines whether we should skip the check for client compatibility when performing an upgrade. | bool | false |
buggify | Buggify defines settings for injecting faults into a cluster for testing. | BuggifyConfig | false |
sidecarVersion | SidecarVersion defines the build version of the sidecar to use. Deprecated: Use SidecarVersions instead. | int | false |
podLabels | PodLabels defines custom labels to apply to the FDB pods. Deprecated: Use the PodTemplate field instead. | map[string]string | false |
resources | Resources defines the resource requirements for the foundationdb containers. Deprecated: Use the PodTemplate field instead. | *corev1.ResourceRequirements | false |
initContainers | InitContainers defines custom init containers for the FDB pods. Deprecated: Use the PodTemplate field instead. | []corev1.Container | false |
containers | Containers defines custom containers for the FDB pods. Deprecated: Use the PodTemplate field instead. | []corev1.Container | false |
volumes | Volumes defines custom volumes for the FDB pods. Deprecated: Use the PodTemplate field instead. | []corev1.Volume | false |
podSecurityContext | PodSecurityContext defines the security context to apply to the FDB pods. Deprecated: Use the PodTemplate field instead. | *corev1.PodSecurityContext | false |
automountServiceAccountToken | AutomountServiceAccountToken defines whether we should automount the service account tokens in the FDB pods. Deprecated: Use the PodTemplate field instead. | *bool | false |
nextInstanceID | NextInstanceID defines the ID to use when creating the next instance. Deprecated: This is no longer used. | int | false |
storageClass | StorageClass defines the storage class for the volumes in the cluster. Deprecated: Use the VolumeClaim field instead. | *string | false |
volumeSize | VolumeSize defines the size of the volume to use for stateful processes. Deprecated: Use the VolumeClaim field instead. | string | false |
runningVersion | RunningVersion defines the version of FoundationDB that the cluster is currently running. Deprecated: Consult the running version in the status instead. | string | false |
connectionString | ConnectionString defines the contents of the cluster file. Deprecated: You can use SeedConnectionString for bootstrapping, and you can use the ConnectionString in the status to get the latest connection string. | string | false |
configured | Configured defines whether we have configured the database yet. Deprecated: This field has been moved to the status. | bool | false |
podTemplate | PodTemplate allows customizing the FoundationDB pods. Deprecated: use the Processes field instead. | *corev1.PodTemplateSpec | false |
volumeClaim | VolumeClaim allows customizing the persistent volume claim for the FoundationDB pods. Deprecated: use the Processes field instead. | *corev1.PersistentVolumeClaim | false |
customParameters | CustomParameters defines additional parameters to pass to the fdbserver processes. Deprecated: use the Processes field instead. | []string | false |
pendingRemovals | PendingRemovals defines the processes that are pending removal. This maps the name of a pod to its IP address. If a value is left blank, the controller will provide the pod's current IP. Deprecated: To indicate that a process should be removed, use the InstancesToRemove field. To get information about pending removals, use the PendingRemovals field in the status. | map[string]string | false |
storageServersPerPod | StorageServersPerPod defines how many Storage Servers should run in a single Instance (Pod). This number defines the number of processes running in one Pod whereas the ProcessCounts defines the number of Pods created. This means that you end up with ProcessCounts["storage"] * StorageServersPerPod storage processes | int | false |
FoundationDBClusterStatus defines the observed state of FoundationDBCluster
Field | Description | Scheme | Required |
---|---|---|---|
processCounts | ProcessCounts defines the number of processes that are currently running in the cluster. Deprecated: Use ProcessGroups instead. | ProcessCounts | false |
incorrectProcesses | IncorrectProcesses provides the processes that do not have the correct configuration. This will map the instance ID to the timestamp when we observed the incorrect configuration. Deprecated: Use ProcessGroups instead. | map[string]int64 | false |
incorrectPods | IncorrectPods provides the pods that do not have the correct spec. This will contain the name of the pod. Deprecated: Use ProcessGroups instead. | []string | false |
failingPods | FailingPods provides the pods that are not starting correctly. This will contain the name of the pod. Deprecated: Use ProcessGroups instead. | []string | false |
missingProcesses | MissingProcesses provides the processes that are not reporting to the cluster. This will map the names of the pod to the timestamp when we observed that the process was missing. Deprecated: Use ProcessGroups instead. | map[string]int64 | false |
databaseConfiguration | DatabaseConfiguration provides the running configuration of the database. | DatabaseConfiguration | false |
generations | Generations provides information about the latest generation to be reconciled, or to reach other stages at which reconciliation can halt. | ClusterGenerationStatus | false |
health | Health provides information about the health of the database. | ClusterHealth | false |
requiredAddresses | RequiredAddresses define that addresses that we need to enable for the processes in the cluster. | RequiredAddressSet | false |
hasIncorrectConfigMap | HasIncorrectConfigMap indicates whether the latest config map is out of date with the cluster spec. | bool | false |
hasIncorrectServiceConfig | HasIncorrectServiceConfig indicates whether the cluster has service config that is out of date with the cluster spec. | bool | false |
needsNewCoordinators | NeedsNewCoordinators indicates whether the cluster needs to recruit new coordinators to fulfill its fault tolerance requirements. | bool | false |
runningVersion | RunningVersion defines the version of FoundationDB that the cluster is currently running. | string | false |
connectionString | ConnectionString defines the contents of the cluster file. | string | false |
configured | Configured defines whether we have configured the database yet. | bool | false |
pendingRemovals | PendingRemovals defines the processes that are pending removal. This maps the instance ID to its removal state. Deprecated: Use ProcessGroups instead. | map[string]PendingRemovalState | false |
needsSidecarConfInConfigMap | NeedsSidecarConfInConfigMap determines whether we need to include the sidecar conf in the config map even when the latest version should not require it. | bool | false |
storageServersPerDisk | StorageServersPerDisk defines the storageServersPerPod observed in the cluster. If there are more than one value in the slice the reconcile phase is not finished. | []int | false |
processGroups | ProcessGroups contain information about a process group. This information is used in multiple places to trigger the according action. | []*ProcessGroupStatus | false |
FoundationDBStatus describes the status of the cluster as provided by FoundationDB itself.
Field | Description | Scheme | Required |
---|---|---|---|
client | Client provides the client section of the status. | FoundationDBStatusLocalClientInfo | false |
cluster | Cluster provides the cluster section of the status. | FoundationDBStatusClusterInfo | false |
FoundationDBStatusBackupInfo provides information about backups that have been started.
Field | Description | Scheme | Required |
---|---|---|---|
paused | Paused tells whether the backups are paused. | bool | false |
tags | Tags provides information about specific backups. | map[string]FoundationDBStatusBackupTag | false |
FoundationDBStatusBackupTag provides information about a backup under a tag in the cluster status.
Field | Description | Scheme | Required |
---|---|---|---|
current_container | string | false | |
running_backup | bool | false | |
running_backup_is_restorable | bool | false |
FoundationDBStatusClientDBStatus represents the databaseStatus field in the JSON database status
Field | Description | Scheme | Required |
---|---|---|---|
available | Available indicates whether the database is accepting traffic. | bool | false |
healthy | Healthy indicates whether the database is fully healthy. | bool | false |
FoundationDBStatusClusterClientInfo represents the connected client details in the cluster status.
Field | Description | Scheme | Required |
---|---|---|---|
count | Count provides the number of clients connected to the database. | int | false |
supported_versions | SupportedVersions provides information about the versions supported by the connected clients. | []FoundationDBStatusSupportedVersion | false |
FoundationDBStatusClusterInfo describes the "cluster" portion of the cluster status
Field | Description | Scheme | Required |
---|---|---|---|
configuration | DatabaseConfiguration describes the current configuration of the database. | DatabaseConfiguration | false |
processes | Processes provides details on the processes that are reporting to the cluster. | map[string]FoundationDBStatusProcessInfo | false |
data | Data provides information about the data in the database. | FoundationDBStatusDataStatistics | false |
full_replication | FullReplication indicates whether the database is fully replicated. | bool | false |
clients | Clients provides information about clients that are connected to the database. | FoundationDBStatusClusterClientInfo | false |
layers | Layers provides information about layers that are running against the cluster. | FoundationDBStatusLayerInfo | false |
FoundationDBStatusConnectedClient provides information about a client that is connected to the database.
Field | Description | Scheme | Required |
---|---|---|---|
address | Address provides the address the client is connecting from. | string | false |
log_group | LogGroup provides the trace log group the client has set. | string | false |
FoundationDBStatusCoordinator contains information about one of the coordinators.
Field | Description | Scheme | Required |
---|---|---|---|
address | Address provides the coordinator's address. | string | false |
reachable | Reachable indicates whether the coordinator is reachable. | bool | false |
FoundationDBStatusCoordinatorInfo contains information about the client's connection to the coordinators.
Field | Description | Scheme | Required |
---|---|---|---|
coordinators | Coordinators provides a list with coordinator details. | []FoundationDBStatusCoordinator | false |
FoundationDBStatusDataStatistics provides information about the data in the database
Field | Description | Scheme | Required |
---|---|---|---|
total_kv_size_bytes | KVBytes provides the total Key Value Bytes in the database. | int | false |
moving_data | MovingData provides information about the current data movement. | FoundationDBStatusMovingData | false |
FoundationDBStatusLayerInfo provides information about layers that are running against the cluster.
Field | Description | Scheme | Required |
---|---|---|---|
backup | Backup provides information about backups that have been started. | FoundationDBStatusBackupInfo | false |
_error | The error from the layer status. | string | false |
FoundationDBStatusLocalClientInfo contains information about the client connection from the process getting the status.
Field | Description | Scheme | Required |
---|---|---|---|
coordinators | Coordinators provides information about the cluster's coordinators. | FoundationDBStatusCoordinatorInfo | false |
database_status | DatabaseStatus provides a summary of the database's health. | FoundationDBStatusClientDBStatus | false |
FoundationDBStatusMovingData provides information about the current data movement
Field | Description | Scheme | Required |
---|---|---|---|
highest_priority | HighestPriority provides the priority of the highest-priority data movement. | int | false |
in_flight_bytes | InFlightBytes provides how many bytes are being actively moved. | int | false |
in_queue_bytes | InQueueBytes provides how many bytes are pending data movement. | int | false |
FoundationDBStatusProcessInfo describes the "processes" portion of the cluster status
Field | Description | Scheme | Required |
---|---|---|---|
address | Address provides the address of the process. | string | false |
class_type | ProcessClass provides the process class the process has been given. | string | false |
command_line | CommandLine provides the command-line invocation for the process. | string | false |
excluded | Excluded indicates whether the process has been excluded. | bool | false |
locality | The locality information for the process. | map[string]string | false |
version | The version of FoundationDB the process is running. | string | false |
uptime_seconds | The time that the process has been up for. | float64 | false |
FoundationDBStatusSupportedVersion provides information about a version of FDB supported by the connected clients.
Field | Description | Scheme | Required |
---|---|---|---|
client_version | ClientVersion provides the version of FDB the client is connecting through. | string | false |
connected_clients | ConnectedClient provides the clients that are using this version. | []FoundationDBStatusConnectedClient | true |
max_protocol_clients | MaxProtocolClients provides the clients that are using this version as their highest supported protocol version. | []FoundationDBStatusConnectedClient | true |
protocol_version | ProtocolVersion is the version of the wire protocol the client is using. | string | false |
source_version | SourceVersion is the version of the source code that the client library was built from. | string | false |
LockOptions provides customization for locking global operations.
Field | Description | Scheme | Required |
---|---|---|---|
disableLocks | DisableLocks determines whether we should disable locking entirely. | *bool | false |
lockKeyPrefix | LockKeyPrefix provides a custom prefix for the keys in the database we use to store locks. | string | false |
lockDurationMinutes | LockDurationMinutes determines the duration that locks should be valid for. | *int | false |
PendingRemovalState holds information about a process that is being removed. Deprecated: This is modeled in the process group status instead.
Field | Description | Scheme | Required |
---|---|---|---|
podName | The name of the pod that is being removed. | string | false |
address | The public address of the process. | string | false |
exclusionStarted | Whether we have started the exclusion. Deprecated: This field is no longer filled in. | bool | false |
exclusionComplete | Whether we have completed the exclusion. | bool | false |
hadInstance | Whether this removal has ever corresponded to a real instance. | bool | false |
ProcessAddress provides a structured address for a process.
Field | Description | Scheme | Required |
---|---|---|---|
IPAddress | string | false | |
Port | int | false | |
Flags | map[string]bool | false |
ProcessCounts represents the number of processes we have for each valid process class. If one of the counts in the spec is set to 0, we will infer the process count for that class from the role counts. If one of the counts in the spec is set to -1, we will not create any processes for that class. See GetProcessCountsWithDefaults for more information on the rules for inferring process counts.
Field | Description | Scheme | Required |
---|---|---|---|
storage | Storage defines the number of storage class processes. | int | false |
transaction | Transaction defines the number of transaction class processes. | int | false |
stateless | Stateless defines the number of stateless class processes. | int | false |
resolution | Resolution defines the number of resolution class processes. | int | false |
unset | int | false | |
log | int | false | |
master | int | false | |
cluster_controller | int | false | |
proxy | int | false | |
resolver | int | false | |
router | int | false | |
ratekeeper | int | false | |
data_distributor | int | false | |
fast_restore | int | false | |
backup | int | false |
ProcessGroupCondition represents a degraded condition that a process group is in.
Field | Description | Scheme | Required |
---|---|---|---|
type | Name of the condition | ProcessGroupConditionType | false |
timestamp | Timestamp when the Condition was observed | int64 | false |
ProcessGroupStatus represents a the status of a ProcessGroup.
Field | Description | Scheme | Required |
---|---|---|---|
processGroupID | ProcessGroupID represents the ID of the process group | string | false |
processClass | ProcessClass represents the class the process group has. | string | false |
addresses | Addresses represents the list of addresses the process group has been known to have. | []string | false |
remove | Remove defines if the process group is marked for removal. | bool | false |
excluded | Excluded defines if the process group has been fully excluded. This is only used within the reconciliation process, and should not be considered authoritative. | bool | false |
exclusionSkipped | ExclusionSkipped determines if exclusion has been skipped for a process, which will allow the process group to be removed without exclusion. | bool | false |
processGroupConditions | ProcessGroupConditions represents a list of degraded conditions that the process group is in. | []*ProcessGroupCondition | false |
ProcessSettings defines process-level settings.
Field | Description | Scheme | Required |
---|---|---|---|
podTemplate | PodTemplate allows customizing the pod. If a container image with a tag is specified the operator will throw an error and stop processing the cluster. | *corev1.PodTemplateSpec | false |
volumeClaim | VolumeClaim allows customizing the persistent volume claim for the pod. Deprecated: Use the VolumeClaimTemplate field instead. | *corev1.PersistentVolumeClaim | false |
volumeClaimTemplate | VolumeClaimTemplate allows customizing the persistent volume claim for the pod. | *corev1.PersistentVolumeClaim | false |
customParameters | CustomParameters defines additional parameters to pass to the fdbserver process. | *[]string | false |
Region represents a region in the database configuration
Field | Description | Scheme | Required |
---|---|---|---|
datacenters | The data centers in this region. | []DataCenter | false |
satellite_logs | The number of satellite logs that we should recruit. | int | false |
satellite_redundancy_mode | The replication strategy for satellite logs. | string | false |
RequiredAddressSet provides settings for which addresses we need to listen on.
Field | Description | Scheme | Required |
---|---|---|---|
tls | TLS defines whether we need to listen on a TLS address. | bool | false |
nonTLS | NonTLS defines whether we need to listen on a non-TLS address. | bool | false |
RoleCounts represents the roles whose counts can be customized.
Field | Description | Scheme | Required |
---|---|---|---|
storage | int | false | |
logs | int | false | |
proxies | int | false | |
resolvers | int | false | |
log_routers | int | false | |
remote_logs | int | false |
ServiceConfig allows configuring services that sit in front of our pods.
Field | Description | Scheme | Required |
---|---|---|---|
headless | Headless determines whether we want to run a headless service for the cluster. | *bool | false |
publicIPSource | PublicIPSource specifies what source a process should use to get its public IPs. This supports the values pod and service . |
*PublicIPSource | false |
VersionFlags defines internal flags for new features in the database.
Field | Description | Scheme | Required |
---|---|---|---|
log_spill | int | false | |
log_version | int | false |