API Reference v1

EDB Postgres for Kubernetes extends the Kubernetes API defining the following custom resources:

All the resources are defined in the postgresql.k8s.enterprisedb.io/v1 API.

Please refer to the "Configuration Samples" page" of the documentation for examples of usage.

Below you will find a description of the defined resources:

AffinityConfiguration

AffinityConfiguration contains the info we need to create the affinity rules for Pods

NameDescriptionType
enablePodAntiAffinity Activates anti-affinity for the pods. The operator will define pods anti-affinity unless this field is explicitly set to false*bool
topologyKey TopologyKey to use for anti-affinity configuration. See k8s documentation for more info on that - mandatorystring
nodeSelector NodeSelector is map of key-value pairs used to define the nodes on which the pods can run. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/map[string]string
nodeAffinity NodeAffinity describes node affinity scheduling rules for the pod. More info: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity*corev1.NodeAffinity
tolerations Tolerations is a list of Tolerations that should be set for all the pods, in order to allow them to run on tainted nodes. More info: https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/[]corev1.Toleration
podAntiAffinityType PodAntiAffinityType allows the user to decide whether pod anti-affinity between cluster instance has to be considered a strong requirement during scheduling or not. Allowed values are: "preferred" (default if empty) or "required". Setting it to "required", could lead to instances remaining pending until new kubernetes nodes are added if all the existing nodes don't match the required pod anti-affinity rule. More info: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinitystring
additionalPodAntiAffinityAdditionalPodAntiAffinity allows to specify pod anti-affinity terms to be added to the ones generated by the operator if EnablePodAntiAffinity is set to true (default) or to be used exclusively if set to false.*corev1.PodAntiAffinity
additionalPodAffinity AdditionalPodAffinity allows to specify pod affinity terms to be passed to all the cluster's pods.*corev1.PodAffinity

AzureCredentials

AzureCredentials is the type for the credentials to be used to upload files to Azure Blob Storage. The connection string contains every needed information. If the connection string is not specified, we'll need the storage account name and also one (and only one) of:

  • storageKey - storageSasToken

  • inheriting the credentials from the pod environment by setting inheritFromAzureAD to true

NameDescriptionType
connectionString The connection string to be used*SecretKeySelector
storageAccount The storage account where to upload data*SecretKeySelector
storageKey The storage account key to be used in conjunction with the storage account name*SecretKeySelector
storageSasToken A shared-access-signature to be used in conjunction with the storage account name*SecretKeySelector
inheritFromAzureADUse the Azure AD based authentication without providing explicitly the keys. - mandatorybool

Backup

Backup is the Schema for the backups API

NameDescriptionType
metadatametav1.ObjectMeta
spec Specification of the desired behavior of the backup. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-statusBackupSpec
status Most recently observed status of the backup. This data may not be up to date. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-statusBackupStatus

BackupConfiguration

BackupConfiguration defines how the backup of the cluster are taken. Currently the only supported backup method is barmanObjectStore. For details and examples refer to the Backup and Recovery section of the documentation

NameDescriptionType
barmanObjectStoreThe configuration for the barman-cloud tool suite*BarmanObjectStoreConfiguration
retentionPolicy RetentionPolicy is the retention policy to be used for backups and WALs (i.e. '60d'). The retention policy is expressed in the form of XXu where XX is a positive integer and u is in [dwm] - days, weeks, months.string
target The policy to decide which instance should perform backups. Available options are empty string, which will default to primary policy, primary to have backups run always on primary instances, prefer-standby to have backups run preferably on the most updated standby, if available.BackupTarget

BackupList

BackupList contains a list of Backup

NameDescriptionType
metadataStandard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kindsmetav1.ListMeta
items List of backups - mandatory[]Backup

BackupSource

BackupSource contains the backup we need to restore from, plus some information that could be needed to correctly restore it.

NameDescriptionType
endpointCAEndpointCA store the CA bundle of the barman endpoint. Useful when using self-signed certificates to avoid errors with certificate issuer and barman-cloud-wal-archive.*SecretKeySelector

BackupSpec

BackupSpec defines the desired state of Backup

NameDescriptionType
clusterThe cluster to backupLocalObjectReference

BackupStatus

BackupStatus defines the observed state of Backup

NameDescriptionType
endpointCA EndpointCA store the CA bundle of the barman endpoint. Useful when using self-signed certificates to avoid errors with certificate issuer and barman-cloud-wal-archive.*SecretKeySelector
endpointURL Endpoint to be used to upload data to the cloud, overriding the automatic endpoint discoverystring
destinationPathThe path where to store the backup (i.e. s3://bucket/path/to/folder) this path, with different destination folders, will be used for WALs and for data - mandatorystring
serverName The server name on S3, the cluster name is used if this parameter is omittedstring
encryption Encryption method required to S3 APIstring
backupId The ID of the Barman backupstring
phase The last backup statusBackupPhase
startedAt When the backup was started*metav1.Time
stoppedAt When the backup was terminated*metav1.Time
beginWal The starting WALstring
endWal The ending WALstring
beginLSN The starting xlogstring
endLSN The ending xlogstring
error The detected errorstring
commandOutput Unused. Retained for compatibility with old versions.string
commandError The backup command output in case of errorstring
instanceID Information to identify the instance where the backup has been taken from*InstanceID

BarmanCredentials

BarmanCredentials an object containing the potential credentials for each cloud provider

NameDescriptionType
googleCredentialsThe credentials to use to upload data to Google Cloud Storage*GoogleCredentials
s3Credentials The credentials to use to upload data to S3*S3Credentials
azureCredentials The credentials to use to upload data to Azure Blob Storage*AzureCredentials

BarmanObjectStoreConfiguration

BarmanObjectStoreConfiguration contains the backup configuration using Barman against an S3-compatible object storage

NameDescriptionType
endpointURL Endpoint to be used to upload data to the cloud, overriding the automatic endpoint discoverystring
endpointCA EndpointCA store the CA bundle of the barman endpoint. Useful when using self-signed certificates to avoid errors with certificate issuer and barman-cloud-wal-archive*SecretKeySelector
destinationPathThe path where to store the backup (i.e. s3://bucket/path/to/folder) this path, with different destination folders, will be used for WALs and for data - mandatorystring
serverName The server name on S3, the cluster name is used if this parameter is omittedstring
wal The configuration for the backup of the WAL stream. When not defined, WAL files will be stored uncompressed and may be unencrypted in the object store, according to the bucket default policy.*WalBackupConfiguration
data The configuration to be used to backup the data files When not defined, base backups files will be stored uncompressed and may be unencrypted in the object store, according to the bucket default policy.*DataBackupConfiguration
tags Tags is a list of key value pairs that will be passed to the Barman --tags option.map[string]string
historyTags HistoryTags is a list of key value pairs that will be passed to the Barman --history-tags option.map[string]string

BootstrapConfiguration

BootstrapConfiguration contains information about how to create the PostgreSQL cluster. Only a single bootstrap method can be defined among the supported ones. initdb will be used as the bootstrap method if left unspecified. Refer to the Bootstrap page of the documentation for more information.

NameDescriptionType
initdb Bootstrap the cluster via initdb*BootstrapInitDB
recovery Bootstrap the cluster from a backup*BootstrapRecovery
pg_basebackupBootstrap the cluster taking a physical backup of another compatible PostgreSQL instance*BootstrapPgBaseBackup

BootstrapInitDB

BootstrapInitDB is the configuration of the bootstrap process when initdb is used Refer to the Bootstrap page of the documentation for more information.

NameDescriptionType
database Name of the database used by the application. Default: app. - mandatorystring
owner Name of the owner of the database in the instance to be used by applications. Defaults to the value of the database key. - mandatorystring
secret Name of the secret containing the initial credentials for the owner of the user database. If empty a new secret will be created from scratch*LocalObjectReference
redwood If we need to enable/disable Redwood compatibility. Requires EPAS and for EPAS defaults to true*bool
options The list of options that must be passed to initdb when creating the cluster. Deprecated: This could lead to inconsistent configurations, please use the explicit provided parameters instead. If defined, explicit values will be ignored.[]string
dataChecksums Whether the -k option should be passed to initdb, enabling checksums on data pages (default: false)*bool
encoding The value to be passed as option --encoding for initdb (default:UTF8)string
localeCollate The value to be passed as option --lc-collate for initdb (default:C)string
localeCType The value to be passed as option --lc-ctype for initdb (default:C)string
walSegmentSize The value in megabytes (1 to 1024) to be passed to the --wal-segsize option for initdb (default: empty, resulting in PostgreSQL default: 16MB)int
postInitSQL List of SQL queries to be executed as a superuser immediately after the cluster has been created - to be used with extreme care (by default empty)[]string
postInitApplicationSQL List of SQL queries to be executed as a superuser in the application database right after is created - to be used with extreme care (by default empty)[]string
postInitTemplateSQL List of SQL queries to be executed as a superuser in the template1 after the cluster has been created - to be used with extreme care (by default empty)[]string
import Bootstraps the new cluster by importing data from an existing PostgreSQL instance using logical backup (pg_dump and pg_restore)*Import
postInitApplicationSQLRefsPostInitApplicationSQLRefs points references to ConfigMaps or Secrets which contain SQL files, the general implementation order to these references is from all Secrets to all ConfigMaps, and inside Secrets or ConfigMaps, the implementation order is same as the order of each array (by default empty)*PostInitApplicationSQLRefs

BootstrapPgBaseBackup

BootstrapPgBaseBackup contains the configuration required to take a physical backup of an existing PostgreSQL cluster

NameDescriptionType
source The name of the server of which we need to take a physical backup - mandatorystring
databaseName of the database used by the application. Default: app. - mandatorystring
owner Name of the owner of the database in the instance to be used by applications. Defaults to the value of the database key. - mandatorystring
secret Name of the secret containing the initial credentials for the owner of the user database. If empty a new secret will be created from scratch*LocalObjectReference

BootstrapRecovery

BootstrapRecovery contains the configuration required to restore the backup with the specified name and, after having changed the password with the one chosen for the superuser, will use it to bootstrap a full cluster cloning all the instances from the restored primary. Refer to the Bootstrap page of the documentation for more information.

NameDescriptionType
backup The backup we need to restore*BackupSource
source The external cluster whose backup we will restore. This is also used as the name of the folder under which the backup is stored, so it must be set to the name of the source clusterstring
recoveryTargetBy default, the recovery process applies all the available WAL files in the archive (full recovery). However, you can also end the recovery as soon as a consistent state is reached or recover to a point-in-time (PITR) by specifying a RecoveryTarget object, as expected by PostgreSQL (i.e., timestamp, transaction Id, LSN, ...). More info: https://www.postgresql.org/docs/current/runtime-config-wal.html#RUNTIME-CONFIG-WAL-RECOVERY-TARGET*RecoveryTarget
database Name of the database used by the application. Default: app. - mandatorystring
owner Name of the owner of the database in the instance to be used by applications. Defaults to the value of the database key. - mandatorystring
secret Name of the secret containing the initial credentials for the owner of the user database. If empty a new secret will be created from scratch*LocalObjectReference

CertificatesConfiguration

CertificatesConfiguration contains the needed configurations to handle server certificates.

NameDescriptionType
serverCASecret The secret containing the Server CA certificate. If not defined, a new secret will be created with a self-signed CA and will be used to generate the TLS certificate ServerTLSSecret.

Contains:

- ca.crt: CA that should be used to validate the server certificate, used as sslrootcert in client connection strings.
- ca.key: key used to generate Server SSL certs, if ServerTLSSecret is provided, this can be omitted.
string
serverTLSSecret The secret of type kubernetes.io/tls containing the server TLS certificate and key that will be set as ssl_cert_file and ssl_key_file so that clients can connect to postgres securely. If not defined, ServerCASecret must provide also ca.key and a new secret will be created using the provided CA.string
replicationTLSSecretThe secret of type kubernetes.io/tls containing the client certificate to authenticate as the streaming_replica user. If not defined, ClientCASecret must provide also ca.key, and a new secret will be created using the provided CA.string
clientCASecret The secret containing the Client CA certificate. If not defined, a new secret will be created with a self-signed CA and will be used to generate all the client certificates.

Contains:

- ca.crt: CA that should be used to validate the client certificates, used as ssl_ca_file of all the instances.
- ca.key: key used to generate client certificates, if ReplicationTLSSecret is provided, this can be omitted.
string
serverAltDNSNames The list of the server alternative DNS names to be added to the generated server TLS certificates, when required.[]string

CertificatesStatus

CertificatesStatus contains configuration certificates and related expiration dates.

NameDescriptionType
expirationsExpiration dates for all certificates.map[string]string

Cluster

Cluster is the Schema for the PostgreSQL API

NameDescriptionType
metadatametav1.ObjectMeta
spec Specification of the desired behavior of the cluster. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-statusClusterSpec
status Most recently observed status of the cluster. This data may not be up to date. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-statusClusterStatus

ClusterList

ClusterList contains a list of Cluster

NameDescriptionType
metadataStandard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kindsmetav1.ListMeta
items List of clusters - mandatory[]Cluster

ClusterSpec

ClusterSpec defines the desired state of Cluster

NameDescriptionType
description Description of this PostgreSQL clusterstring
inheritedMetadata Metadata that will be inherited by all objects related to the Cluster*EmbeddedObjectMetadata
imageName Name of the container image, supporting both tags (<image>:<tag>) and digests for deterministic and repeatable deployments (<image>:<tag>@sha256:<digestValue>)string
imagePullPolicy Image pull policy. One of Always, Never or IfNotPresent. If not defined, it defaults to IfNotPresent. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-imagescorev1.PullPolicy
postgresUID The UID of the postgres user inside the image, defaults to 26int64
postgresGID The GID of the postgres user inside the image, defaults to 26int64
instances Number of instances required in the cluster - mandatoryint
minSyncReplicas Minimum number of instances required in synchronous replication with the primary. Undefined or 0 allow writes to complete when no standby is available.int
maxSyncReplicas The target value for the synchronous replication quorum, that can be decreased if the number of ready standbys is lower than this. Undefined or 0 disable synchronous replication.int
postgresql Configuration of the PostgreSQL serverPostgresConfiguration
replicationSlots Replication slots management configuration*ReplicationSlotsConfiguration
bootstrap Instructions to bootstrap this cluster*BootstrapConfiguration
replica Replica cluster configuration*ReplicaClusterConfiguration
superuserSecret The secret containing the superuser password. If not defined a new secret will be created with a randomly generated password*LocalObjectReference
enableSuperuserAccess When this option is enabled, the operator will use the SuperuserSecret to update the postgres user password (if the secret is not present, the operator will automatically create one). When this option is disabled, the operator will ignore the SuperuserSecret content, delete it when automatically created, and then blank the password of the postgres user by setting it to NULL. Enabled by default.*bool
certificates The configuration for the CA and related certificates*CertificatesConfiguration
imagePullSecrets The list of pull secrets to be used to pull the images. If the license key contains a pull secret that secret will be automatically included.[]LocalObjectReference
storage Configuration of the storage of the instancesStorageConfiguration
serviceAccountTemplate Configure the generation of the service account*ServiceAccountTemplate
walStorage Configuration of the storage for PostgreSQL WAL (Write-Ahead Log)*StorageConfiguration
startDelay The time in seconds that is allowed for a PostgreSQL instance to successfully start up (default 30)int32
stopDelay The time in seconds that is allowed for a PostgreSQL instance to gracefully shutdown (default 30)int32
switchoverDelay The time in seconds that is allowed for a primary PostgreSQL instance to gracefully shutdown during a switchover. Default value is 40000000, greater than one year in seconds, big enough to simulate an infinite delayint32
failoverDelay The amount of time (in seconds) to wait before triggering a failover after the primary PostgreSQL instance in the cluster was detected to be unhealthyint32
affinity Affinity/Anti-affinity rules for PodsAffinityConfiguration
resources Resources requirements of every generated Pod. Please refer to https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ for more information.corev1.ResourceRequirements
primaryUpdateStrategy Strategy to follow to upgrade the primary server during a rolling update procedure, after all replicas have been successfully updated: it can be automated (unsupervised - default) or manual (supervised)PrimaryUpdateStrategy
primaryUpdateMethod Method to follow to upgrade the primary server during a rolling update procedure, after all replicas have been successfully updated: it can be with a switchover (switchover - default) or in-place (restart)PrimaryUpdateMethod
backup The configuration to be used for backups*BackupConfiguration
nodeMaintenanceWindow Define a maintenance window for the Kubernetes nodes*NodeMaintenanceWindow
licenseKey The license key of the cluster. When empty, the cluster operates in trial mode and after the expiry date (default 30 days) the operator will cease any reconciliation attempt. For details, please refer to the license agreement that comes with the operator.string
licenseKeySecret The reference to the license key. When this is set it take precedence over LicenseKey.*corev1.SecretKeySelector
monitoring The configuration of the monitoring infrastructure of this cluster*MonitoringConfiguration
externalClusters The list of external clusters which are used in the configuration[]ExternalCluster
logLevel The instances' log level, one of the following values: error, warning, info (default), debug, tracestring
projectedVolumeTemplateTemplate to be used to define projected volumes, projected volumes will be mounted under /projected base folder*corev1.ProjectedVolumeSource
env Env follows the Env format to pass environment variables to the pods created in the cluster[]corev1.EnvVar
envFrom EnvFrom follows the EnvFrom format to pass environment variables sources to the pods to be used by Env[]corev1.EnvFromSource

ClusterStatus

ClusterStatus defines the observed state of Cluster

NameDescriptionType
instances Total number of instances in the clusterint
readyInstances Total number of ready instances in the clusterint
instancesStatus InstancesStatus indicates in which status the instances aremap[utils.PodStatus][]string
instancesReportedState the reported state of the instances during the last reconciliation loopmap[PodName]InstanceReportedState
timelineID The timeline of the Postgres clusterint
topology Instances topology.Topology
latestGeneratedNode ID of the latest generated node (used to avoid node name clashing)int
currentPrimary Current primary instancestring
targetPrimary Target primary instance, this is different from the previous one during a switchover or a failoverstring
pvcCount How many PVCs have been created by this clusterint32
jobCount How many Jobs have been created by this clusterint32
danglingPVC List of all the PVCs created by this cluster and still available which are not attached to a Pod[]string
resizingPVC List of all the PVCs that have ResizingPVC condition.[]string
initializingPVC List of all the PVCs that are being initialized by this cluster[]string
healthyPVC List of all the PVCs not dangling nor initializing[]string
unusablePVC List of all the PVCs that are unusable because another PVC is missing[]string
licenseStatus Status of the licenselicensekey.Status
writeService Current write podstring
readService Current list of read podsstring
phase Current phase of the clusterstring
phaseReason Reason for the current phasestring
secretsResourceVersion The list of resource versions of the secrets managed by the operator. Every change here is done in the interest of the instance manager, which will refresh the secret dataSecretsResourceVersion
configMapResourceVersion The list of resource versions of the configmaps, managed by the operator. Every change here is done in the interest of the instance manager, which will refresh the configmap dataConfigMapResourceVersion
certificates The configuration for the CA and related certificates, initialized with defaults.CertificatesStatus
firstRecoverabilityPoint The first recoverability point, stored as a date in RFC3339 formatstring
cloudNativePostgresqlCommitHash The commit hash number of which this operator runningstring
currentPrimaryTimestamp The timestamp when the last actual promotion to primary has occurredstring
currentPrimaryFailingSinceTimestampThe timestamp when the primary was detected to be unhealthy This field is reported only when spec.failoverDelay is populatedstring
targetPrimaryTimestamp The timestamp when the last request for a new primary has occurredstring
poolerIntegrations The integration needed by poolers referencing the cluster*PoolerIntegrations
cloudNativePostgresqlOperatorHash The hash of the binary of the operatorstring
onlineUpdateEnabled OnlineUpdateEnabled shows if the online upgrade is enabled inside the clusterbool
azurePVCUpdateEnabled AzurePVCUpdateEnabled shows if the PVC online upgrade is enabled for this clusterbool
conditions Conditions for cluster object[]metav1.Condition
instanceNames List of instance names in the cluster[]string

ConfigMapKeySelector

ConfigMapKeySelector contains enough information to let you locate the key of a ConfigMap

NameDescriptionType
keyThe key to select - mandatorystring

ConfigMapResourceVersion

ConfigMapResourceVersion is the resource versions of the secrets managed by the operator

NameDescriptionType
metricsA map with the versions of all the config maps used to pass metrics. Map keys are the config map names, map values are the versionsmap[string]string

DataBackupConfiguration

DataBackupConfiguration is the configuration of the backup of the data directory

NameDescriptionType
compression Compress a backup file (a tar file per tablespace) while streaming it to the object store. Available options are empty string (no compression, default), gzip, bzip2 or snappy.CompressionType
encryption Whenever to force the encryption of files (if the bucket is not already configured for that). Allowed options are empty string (use the bucket policy, default), AES256 and aws:kmsEncryptionType
immediateCheckpointControl whether the I/O workload for the backup initial checkpoint will be limited, according to the checkpoint_completion_target setting on the PostgreSQL server. If set to true, an immediate checkpoint will be used, meaning PostgreSQL will complete the checkpoint as soon as possible. false by default.bool
jobs The number of parallel jobs to be used to upload the backup, defaults to 2*int32

EPASConfiguration

EPASConfiguration contains EDB Postgres Advanced Server specific configurations

NameDescriptionType
auditIf true enables edb_audit loggingbool
tde TDE configuration*TDEConfiguration

EmbeddedObjectMetadata

EmbeddedObjectMetadata contains metadata to be inherited by all resources related to a Cluster

NameDescriptionType
labels map[string]string
annotationsmap[string]string

ExternalCluster

ExternalCluster represents the connection parameters to an external cluster which is used in the other sections of the configuration

NameDescriptionType
name The server name, required - mandatorystring
connectionParametersThe list of connection parameters, such as dbname, host, username, etcmap[string]string
sslCert The reference to an SSL certificate to be used to connect to this instance*corev1.SecretKeySelector
sslKey The reference to an SSL private key to be used to connect to this instance*corev1.SecretKeySelector
sslRootCert The reference to an SSL CA public key to be used to connect to this instance*corev1.SecretKeySelector
password The reference to the password to be used to connect to the server*corev1.SecretKeySelector
barmanObjectStore The configuration for the barman-cloud tool suite*BarmanObjectStoreConfiguration

GoogleCredentials

GoogleCredentials is the type for the Google Cloud Storage credentials. This needs to be specified even if we run inside a GKE environment.

NameDescriptionType
gkeEnvironment If set to true, will presume that it's running inside a GKE environment, default to false. - mandatorybool
applicationCredentialsThe secret containing the Google Cloud Storage JSON file with the credentials*SecretKeySelector

Import

Import contains the configuration to init a database from a logic snapshot of an externalCluster

NameDescriptionType
source The source of the import - mandatoryImportSource
type The import type. Can be microservice or monolith. - mandatorySnapshotType
databases The databases to import - mandatory[]string
roles The roles to import[]string
postImportApplicationSQLList of SQL queries to be executed as a superuser in the application database right after is imported - to be used with extreme care (by default empty). Only available in microservice type.[]string

ImportSource

ImportSource describes the source for the logical snapshot

NameDescriptionType
externalClusterThe name of the externalCluster used for import - mandatorystring

InstanceID

InstanceID contains the information to identify an instance

NameDescriptionType
podName The pod namestring
ContainerIDThe container IDstring

InstanceReportedState

InstanceReportedState describes the last reported state of an instance during a reconciliation loop

NameDescriptionType
isPrimary indicates if an instance is the primary one - mandatorybool
timeLineIDindicates on which TimelineId the instance isint

LDAPBindAsAuth

LDAPBindAsAuth provides the required fields to use the bind authentication for LDAP

NameDescriptionType
prefixPrefix for the bind authentication optionstring
suffixSuffix for the bind authentication optionstring

LDAPBindSearchAuth

LDAPBindSearchAuth provides the required fields to use the bind+search LDAP authentication process

NameDescriptionType
baseDN Root DN to begin the user searchstring
bindDN DN of the user to bind to the directorystring
bindPassword Secret with the password for the user to bind to the directory*corev1.SecretKeySelector
searchAttributeAttribute to match against the usernamestring
searchFilter Search filter to use when doing the search+bind authenticationstring

LDAPConfig

LDAPConfig contains the parameters needed for LDAP authentication

NameDescriptionType
server LDAP hostname or IP addressstring
port LDAP server portint
scheme LDAP schema to be used, possible options are ldap and ldapsLDAPScheme
tls Set to 'true' to enable LDAP over TLS. 'false' is defaultbool
bindAsAuth Bind as authentication configuration*LDAPBindAsAuth
bindSearchAuthBind+Search authentication configuration*LDAPBindSearchAuth

LocalObjectReference

LocalObjectReference contains enough information to let you locate a local object with a known type inside the same namespace

NameDescriptionType
nameName of the referent. - mandatorystring

Metadata

Metadata is a structure similar to the metav1.ObjectMeta, but still parseable by controller-gen to create a suitable CRD for the user. The comment of PodTemplateSpec has an explanation of why we are not using the core data types.

NameDescriptionType
labels Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labelsmap[string]string
annotationsAnnotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotationsmap[string]string

MonitoringConfiguration

MonitoringConfiguration is the type containing all the monitoring configuration for a certain cluster

NameDescriptionType
disableDefaultQueries Whether the default queries should be injected. Set it to true if you don't want to inject default queries into the cluster. Default: false.*bool
customQueriesConfigMapThe list of config maps containing the custom queries[]ConfigMapKeySelector
customQueriesSecret The list of secrets containing the custom queries[]SecretKeySelector
enablePodMonitor Enable or disable the PodMonitorbool

NodeMaintenanceWindow

NodeMaintenanceWindow contains information that the operator will use while upgrading the underlying node.

This option is only useful when the chosen storage prevents the Pods from being freely moved across nodes.

NameDescriptionType
inProgressIs there a node maintenance activity in progress? - mandatorybool
reusePVC Reuse the existing PVC (wait for the node to come up again) or not (recreate it elsewhere - when instances >1) - mandatory*bool

PgBouncerIntegrationStatus

PgBouncerIntegrationStatus encapsulates the needed integration for the pgbouncer poolers referencing the cluster

NameDescriptionType
secrets[]string

PgBouncerSecrets

PgBouncerSecrets contains the versions of the secrets used by pgbouncer

NameDescriptionType
authQueryThe auth query secret versionSecretVersion

PgBouncerSpec

PgBouncerSpec defines how to configure PgBouncer

NameDescriptionType
poolMode The pool mode - mandatoryPgBouncerPoolMode
authQuerySecretThe credentials of the user that need to be used for the authentication query. In case it is specified, also an AuthQuery (e.g. "SELECT usename, passwd FROM pg_shadow WHERE usename=$1") has to be specified and no automatic CNP Cluster integration will be triggered.*LocalObjectReference
authQuery The query that will be used to download the hash of the password of a certain user. Default: "SELECT usename, passwd FROM user_search($1)". In case it is specified, also an AuthQuerySecret has to be specified and no automatic CNP Cluster integration will be triggered.string
parameters Additional parameters to be passed to PgBouncer - please check the CNP documentation for a list of options you can configuremap[string]string
paused When set to true, PgBouncer will disconnect from the PostgreSQL server, first waiting for all queries to complete, and pause all new client connections until this value is set to false (default). Internally, the operator calls PgBouncer's PAUSE and RESUME commands.*bool

PodTemplateSpec

PodTemplateSpec is a structure allowing the user to set a template for Pod generation.

Unfortunately we can't use the corev1.PodTemplateSpec type because the generated CRD won't have the field for the metadata section.

References: https://github.com/kubernetes-sigs/controller-tools/issues/385 https://github.com/kubernetes-sigs/controller-tools/issues/448 https://github.com/prometheus-operator/prometheus-operator/issues/3041

NameDescriptionType
metadataStandard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadataMetadata
spec Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-statuscorev1.PodSpec

Pooler

Pooler is the Schema for the poolers API

NameDescriptionType
metadatametav1.ObjectMeta
spec PoolerSpec
status PoolerStatus

PoolerIntegrations

PoolerIntegrations encapsulates the needed integration for the poolers referencing the cluster

NameDescriptionType
pgBouncerIntegrationPgBouncerIntegrationStatus

PoolerList

PoolerList contains a list of Pooler

NameDescriptionType
metadatametav1.ListMeta
items - mandatory[]Pooler

PoolerSecrets

PoolerSecrets contains the versions of all the secrets used

NameDescriptionType
serverTLS The server TLS secret versionSecretVersion
serverCA The server CA secret versionSecretVersion
clientCA The client CA secret versionSecretVersion
pgBouncerSecretsThe version of the secrets used by PgBouncer*PgBouncerSecrets

PoolerSpec

PoolerSpec defines the desired state of Pooler

NameDescriptionType
cluster This is the cluster reference on which the Pooler will work. Pooler name should never match with any cluster name within the same namespace. - mandatoryLocalObjectReference
type Which instances we must forward traffic to? - mandatoryPoolerType
instancesThe number of replicas we want - mandatoryint32
template The template of the Pod to be created*PodTemplateSpec
pgbouncerThe PgBouncer configuration - mandatory*PgBouncerSpec

PoolerStatus

PoolerStatus defines the observed state of Pooler

NameDescriptionType
secrets The resource version of the config object*PoolerSecrets
instancesThe number of pods trying to be scheduledint32

PostInitApplicationSQLRefs

PostInitApplicationSQLRefs points references to ConfigMaps or Secrets which contain SQL files, the general implementation order to these references is from all Secrets to all ConfigMaps, and inside Secrets or ConfigMaps, the implementation order is same as the order of each array

NameDescriptionType
secretRefs SecretRefs holds a list of references to Secrets[]SecretKeySelector
configMapRefsConfigMapRefs holds a list of references to ConfigMaps[]ConfigMapKeySelector

PostgresConfiguration

PostgresConfiguration defines the PostgreSQL configuration

NameDescriptionType
parameters PostgreSQL configuration options (postgresql.conf)map[string]string
pg_hba PostgreSQL Host Based Authentication rules (lines to be appended to the pg_hba.conf file)[]string
epas EDB Postgres Advanced Server specific configurations*EPASConfiguration
syncReplicaElectionConstraintRequirements to be met by sync replicas. This will affect how the "synchronous_standby_names" parameter will be set up.SyncReplicaElectionConstraints
promotionTimeout Specifies the maximum number of seconds to wait when promoting an instance to primary. Default value is 40000000, greater than one year in seconds, big enough to simulate an infinite timeoutint32
shared_preload_libraries Lists of shared preload libraries to add to the default ones[]string
ldap Options to specify LDAP configuration*LDAPConfig

RecoveryTarget

RecoveryTarget allows to configure the moment where the recovery process will stop. All the target options except TargetTLI are mutually exclusive.

NameDescriptionType
backupID The ID of the backup from which to start the recovery process. If empty (default) the operator will automatically detect the backup based on targetTime or targetLSN if specified. Otherwise use the latest available backup in chronological order.string
targetTLI The target timeline ("latest" or a positive integer)string
targetXID The target transaction IDstring
targetName The target name (to be previously created with pg_create_restore_point)string
targetLSN The target LSN (Log Sequence Number)string
targetTime The target time as a timestamp in the RFC3339 standardstring
targetImmediateEnd recovery as soon as a consistent state is reached*bool
exclusive Set the target to be exclusive (defaults to true)*bool

ReplicaClusterConfiguration

ReplicaClusterConfiguration encapsulates the configuration of a replica cluster

NameDescriptionType
enabledIf replica mode is enabled, this cluster will be a replica of an existing cluster. Replica cluster can be created from a recovery object store or via streaming through pg_basebackup. Refer to the Replication page of the documentation for more information. - mandatorybool
source The name of the external cluster which is the replication origin - mandatorystring

ReplicationSlotsConfiguration

ReplicationSlotsConfiguration encapsulates the configuration of replication slots

NameDescriptionType
highAvailabilityReplication slots for high availability configuration*ReplicationSlotsHAConfiguration
updateInterval Standby will update the status of the local replication slots every updateInterval seconds (default 30).int

ReplicationSlotsHAConfiguration

ReplicationSlotsHAConfiguration encapsulates the configuration of the replication slots that are automatically managed by the operator to control the streaming replication connections with the standby instances for high availability (HA) purposes. Replication slots are a PostgreSQL feature that makes sure that PostgreSQL automatically keeps WAL files in the primary when a streaming client (in this specific case a replica that is part of the HA cluster) gets disconnected.

NameDescriptionType
enabled If enabled, the operator will automatically manage replication slots on the primary instance and use them in streaming replication connections with all the standby instances that are part of the HA cluster. If disabled (default), the operator will not take advantage of replication slots in streaming connections with the replicas. This feature also controls replication slots in replica cluster, from the designated primary to its cascading replicas. This can only be set at creation time. - mandatorybool
slotPrefixPrefix for replication slots managed by the operator for HA. It may only contain lower case letters, numbers, and the underscore character. This can only be set at creation time. By default set to _cnp_.string

RollingUpdateStatus

RollingUpdateStatus contains the information about an instance which is being updated

NameDescriptionType
imageNameThe image which we put into the Pod - mandatorystring
startedAtWhen the update has been startedmetav1.Time

S3Credentials

S3Credentials is the type for the credentials to be used to upload files to S3. It can be provided in two alternative ways:

  • explicitly passing accessKeyId and secretAccessKey

  • inheriting the role from the pod environment by setting inheritFromIAMRole to true

NameDescriptionType
accessKeyId The reference to the access key id*SecretKeySelector
secretAccessKey The reference to the secret access key*SecretKeySelector
region The reference to the secret containing the region name*SecretKeySelector
sessionToken The references to the session key*SecretKeySelector
inheritFromIAMRoleUse the role based authentication without providing explicitly the keys. - mandatorybool

ScheduledBackup

ScheduledBackup is the Schema for the scheduledbackups API

NameDescriptionType
metadatametav1.ObjectMeta
spec Specification of the desired behavior of the ScheduledBackup. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-statusScheduledBackupSpec
status Most recently observed status of the ScheduledBackup. This data may not be up to date. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-statusScheduledBackupStatus

ScheduledBackupList

ScheduledBackupList contains a list of ScheduledBackup

NameDescriptionType
metadataStandard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kindsmetav1.ListMeta
items List of clusters - mandatory[]ScheduledBackup

ScheduledBackupSpec

ScheduledBackupSpec defines the desired state of ScheduledBackup

NameDescriptionType
suspend If this backup is suspended or not*bool
immediate If the first backup has to be immediately start after creation or not*bool
schedule The schedule does not follow the same format used in Kubernetes CronJobs as it includes an additional seconds specifier, see https://pkg.go.dev/github.com/robfig/cron#hdr-CRON_Expression_Format - mandatorystring
cluster The cluster to backupLocalObjectReference
backupOwnerReferenceIndicates which ownerReference should be put inside the created backup resources.
- none: no owner reference for created backup objects (same behavior as before the field was introduced)
- self: sets the Scheduled backup object as owner of the backup
- cluster: set the cluster as owner of the backup
string

ScheduledBackupStatus

ScheduledBackupStatus defines the observed state of ScheduledBackup

NameDescriptionType
lastCheckTime The latest time the schedule*metav1.Time
lastScheduleTimeInformation when was the last time that backup was successfully scheduled.*metav1.Time
nextScheduleTimeNext time we will run a backup*metav1.Time

SecretKeySelector

SecretKeySelector contains enough information to let you locate the key of a Secret

NameDescriptionType
keyThe key to select - mandatorystring

SecretVersion

SecretVersion contains a secret name and its ResourceVersion

NameDescriptionType
name The name of the secretstring
versionThe ResourceVersion of the secretstring

SecretsResourceVersion

SecretsResourceVersion is the resource versions of the secrets managed by the operator

NameDescriptionType
superuserSecretVersion The resource version of the "postgres" user secretstring
replicationSecretVersionThe resource version of the "streaming_replica" user secretstring
applicationSecretVersionThe resource version of the "app" user secretstring
caSecretVersion Unused. Retained for compatibility with old versions.string
clientCaSecretVersion The resource version of the PostgreSQL client-side CA secret versionstring
serverCaSecretVersion The resource version of the PostgreSQL server-side CA secret versionstring
serverSecretVersion The resource version of the PostgreSQL server-side secret versionstring
barmanEndpointCA The resource version of the Barman Endpoint CA if providedstring
metrics A map with the versions of all the secrets used to pass metrics. Map keys are the secret names, map values are the versionsmap[string]string

ServiceAccountTemplate

ServiceAccountTemplate contains the template needed to generate the service accounts

NameDescriptionType
metadataMetadata are the metadata to be used for the generated service account - mandatoryMetadata

StorageConfiguration

StorageConfiguration is the configuration of the storage of the PostgreSQL instances

NameDescriptionType
storageClass StorageClass to use for database data (PGDATA). Applied after evaluating the PVC template, if available. If not specified, generated PVCs will be satisfied by the default storage class*string
size Size of the storage. Required if not already specified in the PVC template. Changes to this field are automatically reapplied to the created PVCs. Size cannot be decreased.string
resizeInUseVolumesResize existent PVCs, defaults to true*bool
pvcTemplate Template to be used to generate the Persistent Volume Claim*corev1.PersistentVolumeClaimSpec

SyncReplicaElectionConstraints

SyncReplicaElectionConstraints contains the constraints for sync replicas election.

For anti-affinity parameters two instances are considered in the same location if all the labels values match.

In future synchronous replica election restriction by name will be supported.

NameDescriptionType
enabled This flag enables the constraints for sync replicas - mandatorybool
nodeLabelsAntiAffinityA list of node labels values to extract and compare to evaluate if the pods reside in the same topology or not[]string

TDEConfiguration

TDEConfiguration contains the Transparent Data Encryption configuration

NameDescriptionType
enabled True if we want to have TDE enabledbool
secretKeyRefReference to the secret that contains the encryption key*corev1.SecretKeySelector

Topology

Topology contains the cluster topology

NameDescriptionType
successfullyExtractedSuccessfullyExtracted indicates if the topology data was extract. It is useful to enact fallback behaviors in synchronous replica election in case of failuresbool
instances Instances contains the pod topology of the instancesmap[PodName]PodTopologyLabels

WalBackupConfiguration

WalBackupConfiguration is the configuration of the backup of the WAL stream

NameDescriptionType
compressionCompress a WAL file before sending it to the object store. Available options are empty string (no compression, default), gzip, bzip2 or snappy.CompressionType
encryption Whenever to force the encryption of files (if the bucket is not already configured for that). Allowed options are empty string (use the bucket policy, default), AES256 and aws:kmsEncryptionType
maxParallelNumber of WAL files to be either archived in parallel (when the PostgreSQL instance is archiving to a backup object store) or restored in parallel (when a PostgreSQL standby is fetching WAL files from a recovery object store). If not specified, WAL files will be processed one at a time. It accepts a positive integer as a value - with 1 being the minimum accepted value.int