Skip to content

Commit 5cdf4e6

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 d07d01d commit 5cdf4e6

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
@@ -588,7 +588,7 @@ file on the source PostgreSQL instance:
588588
host replication streaming_replica all md5
589589
```
590590

591-
The following manifest creates a new PostgreSQL 18.0 cluster,
591+
The following manifest creates a new PostgreSQL 18.1 cluster,
592592
called `target-db`, using the `pg_basebackup` bootstrap method
593593
to clone an external PostgreSQL cluster defined as `source-db`
594594
(in the `externalClusters` array). As you can see, the `source-db`
@@ -603,7 +603,7 @@ metadata:
603603
name: target-db
604604
spec:
605605
instances: 3
606-
imageName: ghcr.io/cloudnative-pg/postgresql:18.0-system-trixie
606+
imageName: ghcr.io/cloudnative-pg/postgresql:18.1-system-trixie
607607
608608
bootstrap:
609609
pg_basebackup:
@@ -623,7 +623,7 @@ spec:
623623
```
624624

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

628628
#### TLS certificate authentication
629629

@@ -638,7 +638,7 @@ in the same Kubernetes cluster.
638638
This example can be easily adapted to cover an instance that resides
639639
outside the Kubernetes cluster.
640640

641-
The manifest defines a new PostgreSQL 18.0 cluster called `cluster-clone-tls`,
641+
The manifest defines a new PostgreSQL 18.1 cluster called `cluster-clone-tls`,
642642
which is bootstrapped using the `pg_basebackup` method from the `cluster-example`
643643
external cluster. The host is identified by the read/write service
644644
in the same cluster, while the `streaming_replica` user is authenticated
@@ -653,7 +653,7 @@ metadata:
653653
name: cluster-clone-tls
654654
spec:
655655
instances: 3
656-
imageName: ghcr.io/cloudnative-pg/postgresql:18.0-system-trixie
656+
imageName: ghcr.io/cloudnative-pg/postgresql:18.1-system-trixie
657657
658658
bootstrap:
659659
pg_basebackup:

docs/src/declarative_hibernation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ $ kubectl cnpg status <cluster-name>
5151
Cluster Summary
5252
Name: cluster-example
5353
Namespace: default
54-
PostgreSQL Image: ghcr.io/cloudnative-pg/postgresql:18.0-system-trixie
54+
PostgreSQL Image: ghcr.io/cloudnative-pg/postgresql:18.1-system-trixie
5555
Primary instance: cluster-example-2
5656
Status: Cluster in healthy state
5757
Instances: 3

docs/src/image_catalog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ spec:
3737
- major: 17
3838
image: ghcr.io/cloudnative-pg/postgresql:17.6-system-trixie
3939
- major: 18
40-
image: ghcr.io/cloudnative-pg/postgresql:18.0-system-trixie
40+
image: ghcr.io/cloudnative-pg/postgresql:18.1-system-trixie
4141
```
4242
4343
**Example of a Cluster-Wide Catalog using `ClusterImageCatalog` Resource:**
@@ -56,7 +56,7 @@ spec:
5656
- major: 17
5757
image: ghcr.io/cloudnative-pg/postgresql:17.6-system-trixie
5858
- major: 18
59-
image: ghcr.io/cloudnative-pg/postgresql:18.0-system-trixie
59+
image: ghcr.io/cloudnative-pg/postgresql:18.1-system-trixie
6060
```
6161

6262
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
@@ -91,7 +91,7 @@ Three image flavors are available, each extending the previous one:
9191
want to plan a future migration to `minimal` or `standard` images with the
9292
Barman Cloud plugin, or another supported backup solution.
9393

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

9696
All images are signed and shipped with SBOM and provenance attestations.
9797
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
@@ -1052,7 +1052,7 @@ it from the actual pod. This means that you will be using the `postgres` user.
10521052
```console
10531053
$ kubectl cnpg psql cluster-example
10541054
1055-
psql (18.0 (Debian 18.0-1.pgdg110+1))
1055+
psql (18.1 (Debian 18.1-1.pgdg110+1))
10561056
Type "help" for help.
10571057
10581058
postgres=#
@@ -1064,7 +1064,7 @@ select to work against a replica by using the `--replica` option:
10641064
```console
10651065
$ kubectl cnpg psql --replica cluster-example
10661066
1067-
psql (18.0 (Debian 18.0-1.pgdg110+1))
1067+
psql (18.1 (Debian 18.1-1.pgdg110+1))
10681068
10691069
Type "help" for help.
10701070

docs/src/monitoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ cnpg_collector_up{cluster="cluster-example"} 1
243243
244244
# HELP cnpg_collector_postgres_version Postgres version
245245
# TYPE cnpg_collector_postgres_version gauge
246-
cnpg_collector_postgres_version{cluster="cluster-example",full="18.0"} 18.0
246+
cnpg_collector_postgres_version{cluster="cluster-example",full="18.1"} 18.1
247247
248248
# HELP cnpg_collector_last_failed_backup_timestamp The last failed backup as a unix timestamp (Deprecated)
249249
# 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
@@ -108,7 +108,7 @@ values from the ones in this document):
108108

109109
```console
110110
$ kubectl cnpg psql postgis-example -- app
111-
psql (18.0 (Debian 18.0-1.pgdg13+3))
111+
psql (18.1 (Debian 18.1-1.pgdg13+3))
112112
Type "help" for help.
113113
114114
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
@@ -41,7 +41,7 @@ metadata:
4141
name: cluster-example
4242
spec:
4343
instances: 3
44-
imageName: ghcr.io/cloudnative-pg/postgresql:18.0-system-trixie
44+
imageName: ghcr.io/cloudnative-pg/postgresql:18.1-system-trixie
4545

4646
affinity:
4747
enablePodAntiAffinity: true # Default value

0 commit comments

Comments
 (0)