Skip to content

Commit

Permalink
feat: update default PostgreSQL version to 16.0
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub <[email protected]>
  • Loading branch information
postgres-versions-updater authored Sep 21, 2023
1 parent b69f3ac commit 5a7d028
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .github/pg_versions.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"16": [
"16rc1",
"16rc1-1"
"16.0",
"16.0-3"
],
"15": [
"15.4",
Expand Down
10 changes: 5 additions & 5 deletions docs/src/bootstrap.md
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ file on the source PostgreSQL instance:
host replication streaming_replica all md5
```

The following manifest creates a new PostgreSQL 15.4 cluster,
The following manifest creates a new PostgreSQL 16.0 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`
Expand All @@ -477,7 +477,7 @@ metadata:
name: target-db
spec:
instances: 3
imageName: ghcr.io/cloudnative-pg/postgresql:15.4
imageName: ghcr.io/cloudnative-pg/postgresql:16.0
bootstrap:
pg_basebackup:
Expand All @@ -497,7 +497,7 @@ spec:
```

All the requirements must be met for the clone operation to work, including
the same PostgreSQL version (in our case 15.4).
the same PostgreSQL version (in our case 16.0).

#### TLS certificate authentication

Expand All @@ -512,7 +512,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 15.4 cluster called `cluster-clone-tls`,
The manifest defines a new PostgreSQL 16.0 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
Expand All @@ -527,7 +527,7 @@ metadata:
name: cluster-clone-tls
spec:
instances: 3
imageName: ghcr.io/cloudnative-pg/postgresql:15.4
imageName: ghcr.io/cloudnative-pg/postgresql:16.0
bootstrap:
pg_basebackup:
Expand Down
2 changes: 1 addition & 1 deletion docs/src/declarative_hibernation.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ $ kubectl cnpg status <cluster-name>
Cluster Summary
Name: cluster-example
Namespace: default
PostgreSQL Image: ghcr.io/cloudnative-pg/postgresql:15.4
PostgreSQL Image: ghcr.io/cloudnative-pg/postgresql:16.0
Primary instance: cluster-example-2
Status: Cluster in healthy state
Instances: 3
Expand Down
8 changes: 4 additions & 4 deletions docs/src/kubectl-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ Cluster in healthy state
Name: sandbox
Namespace: default
System ID: 7039966298120953877
PostgreSQL Image: ghcr.io/cloudnative-pg/postgresql:15.4
PostgreSQL Image: ghcr.io/cloudnative-pg/postgresql:16.0
Primary instance: sandbox-2
Instances: 3
Ready instances: 3
Expand Down Expand Up @@ -245,7 +245,7 @@ Cluster in healthy state
Name: sandbox
Namespace: default
System ID: 7039966298120953877
PostgreSQL Image: ghcr.io/cloudnative-pg/postgresql:15.4
PostgreSQL Image: ghcr.io/cloudnative-pg/postgresql:16.0
Primary instance: sandbox-2
Instances: 3
Ready instances: 3
Expand Down Expand Up @@ -913,7 +913,7 @@ it from the actual pod. This means that you will be using the `postgres` user.
```shell
kubectl cnpg psql cluster-example
psql (15.4 (Debian 15.4-1.pgdg110+1))
psql (16.0 (Debian 16.0-1.pgdg110+1))
Type "help" for help.
postgres=#
Expand All @@ -924,7 +924,7 @@ select to work against a replica by using the `--replica` option:

```shell
kubectl cnpg psql --replica cluster-example
psql (15.4 (Debian 15.4-1.pgdg110+1))
psql (16.0 (Debian 16.0-1.pgdg110+1))
Type "help" for help.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/monitoring.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,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="15.4"} 15.4
cnpg_collector_postgres_version{cluster="cluster-example",full="16.0"} 16.0
# HELP cnpg_collector_last_failed_backup_timestamp The last failed backup as a unix timestamp
# TYPE cnpg_collector_last_failed_backup_timestamp gauge
Expand Down
2 changes: 1 addition & 1 deletion docs/src/postgis.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 (15.4 (Debian 15.4-1.pgdg110+1))
psql (16.0 (Debian 16.0-1.pgdg110+1))
Type "help" for help.
app=# SELECT * FROM pg_available_extensions WHERE name ~ '^postgis' ORDER BY 1;
Expand Down
2 changes: 1 addition & 1 deletion docs/src/samples/cluster-example-full.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ metadata:
name: cluster-example-full
spec:
description: "Example of cluster"
imageName: ghcr.io/cloudnative-pg/postgresql:15.4
imageName: ghcr.io/cloudnative-pg/postgresql:16.0
# imagePullSecret is only required if the images are located in a private registry
# imagePullSecrets:
# - name: private_registry_access
Expand Down
2 changes: 1 addition & 1 deletion docs/src/scheduling.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ metadata:
name: cluster-example
spec:
instances: 3
imageName: ghcr.io/cloudnative-pg/postgresql:15.4
imageName: ghcr.io/cloudnative-pg/postgresql:16.0

affinity:
enablePodAntiAffinity: true #default value
Expand Down
2 changes: 1 addition & 1 deletion docs/src/ssl_connections.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ Output :
version
--------------------------------------------------------------------------------------
------------------
PostgreSQL 15.4 on x86_64-pc-linux-gnu, compiled by gcc (GCC) 8.3.1 20191121 (Red Hat
PostgreSQL 16.0 on x86_64-pc-linux-gnu, compiled by gcc (GCC) 8.3.1 20191121 (Red Hat
8.3.1-5), 64-bit
(1 row)
```
4 changes: 2 additions & 2 deletions docs/src/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ Cluster in healthy state
Name: cluster-example
Namespace: default
System ID: 7044925089871458324
PostgreSQL Image: ghcr.io/cloudnative-pg/postgresql:15.4-3
PostgreSQL Image: ghcr.io/cloudnative-pg/postgresql:16.0-3
Primary instance: cluster-example-1
Instances: 3
Ready instances: 3
Expand Down Expand Up @@ -256,7 +256,7 @@ kubectl describe cluster <CLUSTER_NAME> -n <NAMESPACE> | grep "Image Name"
Output:

```shell
Image Name: ghcr.io/cloudnative-pg/postgresql:15.4-3
Image Name: ghcr.io/cloudnative-pg/postgresql:16.0-3
```

!!! Note
Expand Down
2 changes: 1 addition & 1 deletion pkg/versions/versions.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const (
Version = "1.20.2"

// DefaultImageName is the default image used by the operator to create pods
DefaultImageName = "ghcr.io/cloudnative-pg/postgresql:15.4"
DefaultImageName = "ghcr.io/cloudnative-pg/postgresql:16.0"

// DefaultOperatorImageName is the default operator image used by the controller in the pods running PostgreSQL
DefaultOperatorImageName = "ghcr.io/cloudnative-pg/cloudnative-pg:1.20.2"
Expand Down

0 comments on commit 5a7d028

Please sign in to comment.