Skip to content

Commit a0d9131

Browse files
postgres-versions-updatergithub-actions[bot]
authored andcommitted
feat: update default PostgreSQL version to 18.1-system-trixie
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent e29c97d commit a0d9131

File tree

13 files changed

+30
-30
lines changed

13 files changed

+30
-30
lines changed

.github/pg_versions.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
{
22
"18": [
3-
"18.0-system-trixie",
4-
"18.0-202511030807-system-trixie"
3+
"18.1-system-trixie",
4+
"18.0-system-trixie"
55
],
66
"17": [
7-
"17.6-system-trixie",
8-
"17.6-202511030807-system-trixie"
7+
"17.7-system-trixie",
8+
"17.6-system-trixie"
99
],
1010
"16": [
11-
"16.10-system-trixie",
12-
"16.10-202511030807-system-trixie"
11+
"16.11-system-trixie",
12+
"16.10-system-trixie"
1313
],
1414
"15": [
15-
"15.14-system-trixie",
16-
"15.14-202511030807-system-trixie"
15+
"15.15-system-trixie",
16+
"15.14-system-trixie"
1717
],
1818
"14": [
19-
"14.19-system-trixie",
20-
"14.19-202511030807-system-trixie"
19+
"14.20-system-trixie",
20+
"14.19-system-trixie"
2121
],
2222
"13": [
2323
"13.22-system-trixie",
24-
"13.22-202511030807-system-trixie"
24+
"13.22-202511100817-system-trixie"
2525
]
2626
}

docs/src/bootstrap.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ file on the source PostgreSQL instance:
594594
host replication streaming_replica all md5
595595
```
596596

597-
The following manifest creates a new PostgreSQL 18.0 cluster,
597+
The following manifest creates a new PostgreSQL 18.1 cluster,
598598
called `target-db`, using the `pg_basebackup` bootstrap method
599599
to clone an external PostgreSQL cluster defined as `source-db`
600600
(in the `externalClusters` array). As you can see, the `source-db`
@@ -609,7 +609,7 @@ metadata:
609609
name: target-db
610610
spec:
611611
instances: 3
612-
imageName: ghcr.io/cloudnative-pg/postgresql:18.0-system-trixie
612+
imageName: ghcr.io/cloudnative-pg/postgresql:18.1-system-trixie
613613
614614
bootstrap:
615615
pg_basebackup:
@@ -629,7 +629,7 @@ spec:
629629
```
630630

631631
All the requirements must be met for the clone operation to work, including
632-
the same PostgreSQL version (in our case 18.0).
632+
the same PostgreSQL version (in our case 18.1).
633633

634634
#### TLS certificate authentication
635635

@@ -644,7 +644,7 @@ in the same Kubernetes cluster.
644644
This example can be easily adapted to cover an instance that resides
645645
outside the Kubernetes cluster.
646646

647-
The manifest defines a new PostgreSQL 18.0 cluster called `cluster-clone-tls`,
647+
The manifest defines a new PostgreSQL 18.1 cluster called `cluster-clone-tls`,
648648
which is bootstrapped using the `pg_basebackup` method from the `cluster-example`
649649
external cluster. The host is identified by the read/write service
650650
in the same cluster, while the `streaming_replica` user is authenticated
@@ -659,7 +659,7 @@ metadata:
659659
name: cluster-clone-tls
660660
spec:
661661
instances: 3
662-
imageName: ghcr.io/cloudnative-pg/postgresql:18.0-system-trixie
662+
imageName: ghcr.io/cloudnative-pg/postgresql:18.1-system-trixie
663663
664664
bootstrap:
665665
pg_basebackup:

docs/src/declarative_hibernation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ $ kubectl cnpg status <cluster-name>
5757
Cluster Summary
5858
Name: cluster-example
5959
Namespace: default
60-
PostgreSQL Image: ghcr.io/cloudnative-pg/postgresql:18.0-system-trixie
60+
PostgreSQL Image: ghcr.io/cloudnative-pg/postgresql:18.1-system-trixie
6161
Primary instance: cluster-example-2
6262
Status: Cluster in healthy state
6363
Instances: 3

docs/src/image_catalog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ spec:
4343
- major: 17
4444
image: ghcr.io/cloudnative-pg/postgresql:17.6-system-trixie
4545
- major: 18
46-
image: ghcr.io/cloudnative-pg/postgresql:18.0-system-trixie
46+
image: ghcr.io/cloudnative-pg/postgresql:18.1-system-trixie
4747
```
4848
4949
**Example of a Cluster-Wide Catalog using `ClusterImageCatalog` Resource:**
@@ -62,7 +62,7 @@ spec:
6262
- major: 17
6363
image: ghcr.io/cloudnative-pg/postgresql:17.6-system-trixie
6464
- major: 18
65-
image: ghcr.io/cloudnative-pg/postgresql:18.0-system-trixie
65+
image: ghcr.io/cloudnative-pg/postgresql:18.1-system-trixie
6666
```
6767

6868
A `Cluster` resource has the flexibility to reference either an `ImageCatalog`

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Three image flavors are available, each extending the previous one:
9797
want to plan a future migration to `minimal` or `standard` images with the
9898
Barman Cloud plugin, or another supported backup solution.
9999

100-
By default, this version of CloudNativePG deploys `ghcr.io/cloudnative-pg/postgresql:18.0-system-trixie`.
100+
By default, this version of CloudNativePG deploys `ghcr.io/cloudnative-pg/postgresql:18.1-system-trixie`.
101101

102102
All images are signed and shipped with SBOM and provenance attestations.
103103
Weekly automated builds ensure that critical vulnerabilities (CVEs) are promptly fixed.

docs/src/kubectl-plugin.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1058,7 +1058,7 @@ it from the actual pod. This means that you will be using the `postgres` user.
10581058
```console
10591059
$ kubectl cnpg psql cluster-example
10601060
1061-
psql (18.0 (Debian 18.0-1.pgdg110+1))
1061+
psql (18.1 (Debian 18.1-1.pgdg110+1))
10621062
Type "help" for help.
10631063
10641064
postgres=#
@@ -1070,7 +1070,7 @@ select to work against a replica by using the `--replica` option:
10701070
```console
10711071
$ kubectl cnpg psql --replica cluster-example
10721072
1073-
psql (18.0 (Debian 18.0-1.pgdg110+1))
1073+
psql (18.1 (Debian 18.1-1.pgdg110+1))
10741074
10751075
Type "help" for help.
10761076

docs/src/monitoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ cnpg_collector_up{cluster="cluster-example"} 1
249249
250250
# HELP cnpg_collector_postgres_version Postgres version
251251
# TYPE cnpg_collector_postgres_version gauge
252-
cnpg_collector_postgres_version{cluster="cluster-example",full="18.0"} 18.0
252+
cnpg_collector_postgres_version{cluster="cluster-example",full="18.1"} 18.1
253253
254254
# HELP cnpg_collector_last_failed_backup_timestamp The last failed backup as a unix timestamp (Deprecated)
255255
# TYPE cnpg_collector_last_failed_backup_timestamp gauge

docs/src/postgis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ values from the ones in this document):
114114

115115
```console
116116
$ kubectl cnpg psql postgis-example -- app
117-
psql (18.0 (Debian 18.0-1.pgdg13+3))
117+
psql (18.1 (Debian 18.1-1.pgdg13+3))
118118
Type "help" for help.
119119
120120
app=# SELECT * FROM pg_available_extensions WHERE name ~ '^postgis' ORDER BY 1;

docs/src/samples/cluster-example-full.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ metadata:
3535
name: cluster-example-full
3636
spec:
3737
description: "Example of cluster"
38-
imageName: ghcr.io/cloudnative-pg/postgresql:18.0-system-trixie
38+
imageName: ghcr.io/cloudnative-pg/postgresql:18.1-system-trixie
3939
# imagePullSecret is only required if the images are located in a private registry
4040
# imagePullSecrets:
4141
# - name: private_registry_access

docs/src/scheduling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ metadata:
4747
name: cluster-example
4848
spec:
4949
instances: 3
50-
imageName: ghcr.io/cloudnative-pg/postgresql:18.0-system-trixie
50+
imageName: ghcr.io/cloudnative-pg/postgresql:18.1-system-trixie
5151

5252
affinity:
5353
enablePodAntiAffinity: true # Default value

0 commit comments

Comments
 (0)