[bitnami/cloudnative-pg] ⬆️ Update dependency references (#33863)

* [bitnami/cloudnative-pg] Release 0.1.14 updating components versions

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>

* Update CHANGELOG.md

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>

* Update CRDs automatically

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>

---------

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Bitnami Bot
2025-05-23 16:00:20 +02:00
committed by GitHub
parent f1bf7cb2bb
commit 91fc6bf12f
12 changed files with 174 additions and 22 deletions

View File

@@ -1,5 +1,5 @@
# Source: https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/refs/tags/v{version}/config/crd/bases/postgresql.cnpg.io_backups.yaml
# Version: 1.25.2
# Version: 1.26.0
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition

View File

@@ -1,5 +1,5 @@
# Source: https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/refs/tags/v{version}/config/crd/bases/postgresql.cnpg.io_clusterimagecatalogs.yaml
# Version: 1.25.2
# Version: 1.26.0
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition

View File

@@ -1,5 +1,5 @@
# Source: https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/refs/tags/v{version}/config/crd/bases/postgresql.cnpg.io_clusters.yaml
# Version: 1.25.2
# Version: 1.26.0
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
@@ -3076,9 +3076,6 @@ spec:
description: The major version of PostgreSQL we want to use from
the ImageCatalog
type: integer
x-kubernetes-validations:
- message: Major is immutable
rule: self == oldSelf
name:
description: Name is the name of resource being referenced
type: string
@@ -4311,6 +4308,13 @@ spec:
More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
format: int32
type: integer
maximumLag:
anyOf:
- type: integer
- type: string
description: Lag limit. Used only for `streaming` strategy
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
periodSeconds:
description: |-
How often (in seconds) to perform the probe.
@@ -4344,6 +4348,13 @@ spec:
More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
format: int32
type: integer
type:
description: The probe strategy
enum:
- pg_isready
- streaming
- query
type: string
type: object
startup:
description: The startup probe configuration
@@ -4360,6 +4371,13 @@ spec:
More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
format: int32
type: integer
maximumLag:
anyOf:
- type: integer
- type: string
description: Lag limit. Used only for `streaming` strategy
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
periodSeconds:
description: |-
How often (in seconds) to perform the probe.
@@ -4393,6 +4411,13 @@ spec:
More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
format: int32
type: integer
type:
description: The probe strategy
enum:
- pg_isready
- streaming
- query
type: string
type: object
type: object
projectedVolumeTemplate:
@@ -5903,10 +5928,6 @@ spec:
- hash
type: object
type: array
azurePVCUpdateEnabled:
description: AzurePVCUpdateEnabled shows if the PVC online upgrade
is enabled for this cluster
type: boolean
certificates:
description: The configuration for the CA and related certificates,
initialized with defaults.
@@ -6105,6 +6126,9 @@ spec:
description: InstanceReportedState describes the last reported state
of an instance during a reconciliation loop
properties:
ip:
description: IP address of the instance
type: string
isPrimary:
description: indicates if an instance is the primary one
type: boolean
@@ -6195,6 +6219,20 @@ spec:
description: OnlineUpdateEnabled shows if the online upgrade is enabled
inside the cluster
type: boolean
pgDataImageInfo:
description: PGDataImageInfo contains the details of the latest image
that has run on the current data directory.
properties:
image:
description: Image is the image name
type: string
majorVersion:
description: MajorVersion is the major version of the image
type: integer
required:
- image
- majorVersion
type: object
phase:
description: Current phase of the cluster
type: string

View File

@@ -1,5 +1,5 @@
# Source: https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/refs/tags/v{version}/config/crd/bases/postgresql.cnpg.io_databases.yaml
# Version: 1.25.2
# Version: 1.26.0
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
@@ -126,6 +126,43 @@ spec:
- present
- absent
type: string
extensions:
description: The list of extensions to be managed in the database
items:
description: ExtensionSpec configures an extension in a database
properties:
ensure:
default: present
description: |-
Specifies whether an extension/schema should be present or absent in
the database. If set to `present`, the extension/schema will be
created if it does not exist. If set to `absent`, the
extension/schema will be removed if it exists.
enum:
- present
- absent
type: string
name:
description: Name of the extension/schema
type: string
schema:
description: |-
The name of the schema in which to install the extension's objects,
in case the extension allows its contents to be relocated. If not
specified (default), and the extension's control file does not
specify a schema either, the current default object creation schema
is used.
type: string
version:
description: |-
The version of the extension to install. If empty, the operator will
install the default version (whatever is specified in the
extension's control file)
type: string
required:
- name
type: object
type: array
icuLocale:
description: |-
Maps to the `ICU_LOCALE` parameter of `CREATE DATABASE`. This
@@ -205,6 +242,35 @@ spec:
Maps to the `OWNER TO` command of `ALTER DATABASE`.
The role name of the user who owns the database inside PostgreSQL.
type: string
schemas:
description: The list of schemas to be managed in the database
items:
description: SchemaSpec configures a schema in a database
properties:
ensure:
default: present
description: |-
Specifies whether an extension/schema should be present or absent in
the database. If set to `present`, the extension/schema will be
created if it does not exist. If set to `absent`, the
extension/schema will be removed if it exists.
enum:
- present
- absent
type: string
name:
description: Name of the extension/schema
type: string
owner:
description: |-
The role name of the user who owns the schema inside PostgreSQL.
It maps to the `AUTHORIZATION` parameter of `CREATE SCHEMA` and the
`OWNER TO` command of `ALTER SCHEMA`.
type: string
required:
- name
type: object
type: array
tablespace:
description: |-
Maps to the `TABLESPACE` parameter of `CREATE DATABASE`.
@@ -244,6 +310,28 @@ spec:
applied:
description: Applied is true if the database was reconciled correctly
type: boolean
extensions:
description: Extensions is the status of the managed extensions
items:
description: DatabaseObjectStatus is the status of the managed database
objects
properties:
applied:
description: |-
True of the object has been installed successfully in
the database
type: boolean
message:
description: Message is the object reconciliation message
type: string
name:
description: The name of the object
type: string
required:
- applied
- name
type: object
type: array
message:
description: Message is the reconciliation output message
type: string
@@ -253,6 +341,28 @@ spec:
desired state that was synchronized
format: int64
type: integer
schemas:
description: Schemas is the status of the managed schemas
items:
description: DatabaseObjectStatus is the status of the managed database
objects
properties:
applied:
description: |-
True of the object has been installed successfully in
the database
type: boolean
message:
description: Message is the object reconciliation message
type: string
name:
description: The name of the object
type: string
required:
- applied
- name
type: object
type: array
type: object
required:
- metadata

View File

@@ -1,5 +1,5 @@
# Source: https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/refs/tags/v{version}/config/crd/bases/postgresql.cnpg.io_imagecatalogs.yaml
# Version: 1.25.2
# Version: 1.26.0
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition

View File

@@ -1,5 +1,5 @@
# Source: https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/refs/tags/v{version}/config/crd/bases/postgresql.cnpg.io_poolers.yaml
# Version: 1.25.2
# Version: 1.26.0
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition

View File

@@ -1,5 +1,5 @@
# Source: https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/refs/tags/v{version}/config/crd/bases/postgresql.cnpg.io_publications.yaml
# Version: 1.25.2
# Version: 1.26.0
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition

View File

@@ -1,5 +1,5 @@
# Source: https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/refs/tags/v{version}/config/crd/bases/postgresql.cnpg.io_scheduledbackups.yaml
# Version: 1.25.2
# Version: 1.26.0
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition

View File

@@ -1,5 +1,5 @@
# Source: https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/refs/tags/v{version}/config/crd/bases/postgresql.cnpg.io_subscriptions.yaml
# Version: 1.25.2
# Version: 1.26.0
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition