diff --git a/.github/pg_versions.json b/.github/pg_versions.json index a6a9696f2b..24c0505e80 100644 --- a/.github/pg_versions.json +++ b/.github/pg_versions.json @@ -1,22 +1,22 @@ { "17": [ - "17.2", - "17.1" + "17.4", + "17.2" ], "16": [ - "16.6", - "16.5" + "16.8", + "16.6" ], "15": [ - "15.10", - "15.9" + "15.12", + "15.10" ], "14": [ - "14.15", - "14.14" + "14.17", + "14.15" ], "13": [ - "13.18", - "13.17" + "13.20", + "13.18" ] } \ No newline at end of file diff --git a/docs/src/bootstrap.md b/docs/src/bootstrap.md index 2a0518f67c..45b632240f 100644 --- a/docs/src/bootstrap.md +++ b/docs/src/bootstrap.md @@ -570,7 +570,7 @@ file on the source PostgreSQL instance: host replication streaming_replica all md5 ``` -The following manifest creates a new PostgreSQL 17.2 cluster, +The following manifest creates a new PostgreSQL 17.4 cluster, called `target-db`, using the `pg_basebackup` bootstrap method to clone an external PostgreSQL cluster defined as `source-db` (in the `externalClusters` array). As you can see, the `source-db` @@ -585,7 +585,7 @@ metadata: name: target-db spec: instances: 3 - imageName: ghcr.io/cloudnative-pg/postgresql:17.2 + imageName: ghcr.io/cloudnative-pg/postgresql:17.4 bootstrap: pg_basebackup: @@ -605,7 +605,7 @@ spec: ``` All the requirements must be met for the clone operation to work, including -the same PostgreSQL version (in our case 17.2). +the same PostgreSQL version (in our case 17.4). #### TLS certificate authentication @@ -620,7 +620,7 @@ in the same Kubernetes cluster. This example can be easily adapted to cover an instance that resides outside the Kubernetes cluster. -The manifest defines a new PostgreSQL 17.2 cluster called `cluster-clone-tls`, +The manifest defines a new PostgreSQL 17.4 cluster called `cluster-clone-tls`, which is bootstrapped using the `pg_basebackup` method from the `cluster-example` external cluster. The host is identified by the read/write service in the same cluster, while the `streaming_replica` user is authenticated @@ -635,7 +635,7 @@ metadata: name: cluster-clone-tls spec: instances: 3 - imageName: ghcr.io/cloudnative-pg/postgresql:17.2 + imageName: ghcr.io/cloudnative-pg/postgresql:17.4 bootstrap: pg_basebackup: diff --git a/docs/src/declarative_hibernation.md b/docs/src/declarative_hibernation.md index 4df6e3403d..36eda0bf35 100644 --- a/docs/src/declarative_hibernation.md +++ b/docs/src/declarative_hibernation.md @@ -58,7 +58,7 @@ $ kubectl cnpg status Cluster Summary Name: cluster-example Namespace: default -PostgreSQL Image: ghcr.io/cloudnative-pg/postgresql:17.2 +PostgreSQL Image: ghcr.io/cloudnative-pg/postgresql:17.4 Primary instance: cluster-example-2 Status: Cluster in healthy state Instances: 3 diff --git a/docs/src/image_catalog.md b/docs/src/image_catalog.md index 6078124fa6..408a352370 100644 --- a/docs/src/image_catalog.md +++ b/docs/src/image_catalog.md @@ -32,7 +32,7 @@ spec: - major: 15 image: ghcr.io/cloudnative-pg/postgresql:15.6 - major: 16 - image: ghcr.io/cloudnative-pg/postgresql:17.2 + image: ghcr.io/cloudnative-pg/postgresql:17.4 ``` **Example of a Cluster-Wide Catalog using `ClusterImageCatalog` Resource:** @@ -47,7 +47,7 @@ spec: - major: 15 image: ghcr.io/cloudnative-pg/postgresql:15.6 - major: 16 - image: ghcr.io/cloudnative-pg/postgresql:17.2 + image: ghcr.io/cloudnative-pg/postgresql:17.4 ``` A `Cluster` resource has the flexibility to reference either an `ImageCatalog` diff --git a/docs/src/kubectl-plugin.md b/docs/src/kubectl-plugin.md index 485e1d9aed..fb5a819b17 100644 --- a/docs/src/kubectl-plugin.md +++ b/docs/src/kubectl-plugin.md @@ -1022,7 +1022,7 @@ it from the actual pod. This means that you will be using the `postgres` user. ```console $ kubectl cnpg psql cluster-example -psql (17.2 (Debian 17.2-1.pgdg110+1)) +psql (17.4 (Debian 17.4-1.pgdg110+1)) Type "help" for help. postgres=# @@ -1034,7 +1034,7 @@ select to work against a replica by using the `--replica` option: ```console $ kubectl cnpg psql --replica cluster-example -psql (17.2 (Debian 17.2-1.pgdg110+1)) +psql (17.4 (Debian 17.4-1.pgdg110+1)) Type "help" for help. diff --git a/docs/src/monitoring.md b/docs/src/monitoring.md index 3fa83cb2f6..06efd3a610 100644 --- a/docs/src/monitoring.md +++ b/docs/src/monitoring.md @@ -217,7 +217,7 @@ cnpg_collector_up{cluster="cluster-example"} 1 # HELP cnpg_collector_postgres_version Postgres version # TYPE cnpg_collector_postgres_version gauge -cnpg_collector_postgres_version{cluster="cluster-example",full="17.2"} 17.2 +cnpg_collector_postgres_version{cluster="cluster-example",full="17.4"} 17.4 # HELP cnpg_collector_last_failed_backup_timestamp The last failed backup as a unix timestamp # TYPE cnpg_collector_last_failed_backup_timestamp gauge diff --git a/docs/src/postgis.md b/docs/src/postgis.md index cd139ac5d7..9df998c16e 100644 --- a/docs/src/postgis.md +++ b/docs/src/postgis.md @@ -100,7 +100,7 @@ values from the ones in this document): ```console $ kubectl exec -ti postgis-example-1 -- psql app Defaulted container "postgres" out of: postgres, bootstrap-controller (init) -psql (17.2 (Debian 17.2-1.pgdg110+1)) +psql (17.4 (Debian 17.4-1.pgdg110+1)) Type "help" for help. app=# SELECT * FROM pg_available_extensions WHERE name ~ '^postgis' ORDER BY 1; diff --git a/docs/src/samples/cluster-example-full.yaml b/docs/src/samples/cluster-example-full.yaml index 321e94a2fe..1551e5318c 100644 --- a/docs/src/samples/cluster-example-full.yaml +++ b/docs/src/samples/cluster-example-full.yaml @@ -35,7 +35,7 @@ metadata: name: cluster-example-full spec: description: "Example of cluster" - imageName: ghcr.io/cloudnative-pg/postgresql:17.2 + imageName: ghcr.io/cloudnative-pg/postgresql:17.4 # imagePullSecret is only required if the images are located in a private registry # imagePullSecrets: # - name: private_registry_access diff --git a/docs/src/scheduling.md b/docs/src/scheduling.md index a681f412a6..79ea6fcddd 100644 --- a/docs/src/scheduling.md +++ b/docs/src/scheduling.md @@ -40,7 +40,7 @@ metadata: name: cluster-example spec: instances: 3 - imageName: ghcr.io/cloudnative-pg/postgresql:17.2 + imageName: ghcr.io/cloudnative-pg/postgresql:17.4 affinity: enablePodAntiAffinity: true # Default value diff --git a/docs/src/ssl_connections.md b/docs/src/ssl_connections.md index 3762ab95d8..1fde48eeda 100644 --- a/docs/src/ssl_connections.md +++ b/docs/src/ssl_connections.md @@ -173,7 +173,7 @@ Output: version -------------------------------------------------------------------------------------- ------------------ -PostgreSQL 17.2 on x86_64-pc-linux-gnu, compiled by gcc (GCC) 8.3.1 20191121 (Red Hat +PostgreSQL 17.4 on x86_64-pc-linux-gnu, compiled by gcc (GCC) 8.3.1 20191121 (Red Hat 8.3.1-5), 64-bit (1 row) ``` diff --git a/docs/src/troubleshooting.md b/docs/src/troubleshooting.md index 6003f2ac96..721dd3ca35 100644 --- a/docs/src/troubleshooting.md +++ b/docs/src/troubleshooting.md @@ -220,7 +220,7 @@ Cluster in healthy state Name: cluster-example Namespace: default System ID: 7044925089871458324 -PostgreSQL Image: ghcr.io/cloudnative-pg/postgresql:17.2-3 +PostgreSQL Image: ghcr.io/cloudnative-pg/postgresql:17.4-3 Primary instance: cluster-example-1 Instances: 3 Ready instances: 3 @@ -288,7 +288,7 @@ kubectl describe cluster -n | grep "Image Name" Output: ```shell - Image Name: ghcr.io/cloudnative-pg/postgresql:17.2-3 + Image Name: ghcr.io/cloudnative-pg/postgresql:17.4-3 ``` !!! Note diff --git a/pkg/versions/versions.go b/pkg/versions/versions.go index c4b1c95414..a098860e52 100644 --- a/pkg/versions/versions.go +++ b/pkg/versions/versions.go @@ -23,7 +23,7 @@ const ( Version = "1.25.0" // DefaultImageName is the default image used by the operator to create pods - DefaultImageName = "ghcr.io/cloudnative-pg/postgresql:17.2" + DefaultImageName = "ghcr.io/cloudnative-pg/postgresql:17.4" // DefaultOperatorImageName is the default operator image used by the controller in the pods running PostgreSQL DefaultOperatorImageName = "ghcr.io/cloudnative-pg/cloudnative-pg:1.25.0"