Skip to content

Commit d32aac8

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

File tree

14 files changed

+32
-32
lines changed

14 files changed

+32
-32
lines changed

.github/pg_versions.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
{
22
"18": [
3-
"18.1-system-trixie",
4-
"18.0-system-trixie"
3+
"18.3-system-trixie",
4+
"18.2-system-trixie"
55
],
66
"17": [
7-
"17.7-system-trixie",
8-
"17.6-system-trixie"
7+
"17.9-system-trixie",
8+
"17.8-system-trixie"
99
],
1010
"16": [
11-
"16.11-system-trixie",
12-
"16.10-system-trixie"
11+
"16.13-system-trixie",
12+
"16.12-system-trixie"
1313
],
1414
"15": [
15-
"15.15-system-trixie",
16-
"15.14-system-trixie"
15+
"15.17-system-trixie",
16+
"15.16-system-trixie"
1717
],
1818
"14": [
19-
"14.20-system-trixie",
20-
"14.19-system-trixie"
19+
"14.22-system-trixie",
20+
"14.21-system-trixie"
2121
],
2222
"13": [
2323
"13.22-system-trixie",

docs/src/bootstrap.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ file on the source PostgreSQL instance:
614614
host replication streaming_replica all md5
615615
```
616616

617-
The following manifest creates a new PostgreSQL 18.1 cluster,
617+
The following manifest creates a new PostgreSQL 18.3 cluster,
618618
called `target-db`, using the `pg_basebackup` bootstrap method
619619
to clone an external PostgreSQL cluster defined as `source-db`
620620
(in the `externalClusters` array). As you can see, the `source-db`
@@ -629,7 +629,7 @@ metadata:
629629
name: target-db
630630
spec:
631631
instances: 3
632-
imageName: ghcr.io/cloudnative-pg/postgresql:18.1-system-trixie
632+
imageName: ghcr.io/cloudnative-pg/postgresql:18.3-system-trixie
633633
634634
bootstrap:
635635
pg_basebackup:
@@ -649,7 +649,7 @@ spec:
649649
```
650650

651651
All the requirements must be met for the clone operation to work, including
652-
the same PostgreSQL version (in our case 18.1).
652+
the same PostgreSQL version (in our case 18.3).
653653

654654
#### TLS certificate authentication
655655

@@ -665,7 +665,7 @@ in the same Kubernetes cluster.
665665
outside the Kubernetes cluster.
666666
:::
667667

668-
The manifest defines a new PostgreSQL 18.1 cluster called `cluster-clone-tls`,
668+
The manifest defines a new PostgreSQL 18.3 cluster called `cluster-clone-tls`,
669669
which is bootstrapped using the `pg_basebackup` method from the `cluster-example`
670670
external cluster. The host is identified by the read/write service
671671
in the same cluster, while the `streaming_replica` user is authenticated
@@ -680,7 +680,7 @@ metadata:
680680
name: cluster-clone-tls
681681
spec:
682682
instances: 3
683-
imageName: ghcr.io/cloudnative-pg/postgresql:18.1-system-trixie
683+
imageName: ghcr.io/cloudnative-pg/postgresql:18.3-system-trixie
684684
685685
bootstrap:
686686
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.1-system-trixie
60+
PostgreSQL Image: ghcr.io/cloudnative-pg/postgresql:18.3-system-trixie
6161
Primary instance: cluster-example-2
6262
Status: Cluster in healthy state
6363
Instances: 3

docs/src/image_catalog.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ spec:
6767
- major: 17
6868
image: ghcr.io/cloudnative-pg/postgresql:17.6-system-trixie
6969
- major: 18
70-
image: ghcr.io/cloudnative-pg/postgresql:18.1-system-trixie
70+
image: ghcr.io/cloudnative-pg/postgresql:18.3-system-trixie
7171
```
7272
7373
The following example defines a cluster-wide `ClusterImageCatalog`:
@@ -86,7 +86,7 @@ spec:
8686
- major: 17
8787
image: ghcr.io/cloudnative-pg/postgresql:17.6-system-trixie
8888
- major: 18
89-
image: ghcr.io/cloudnative-pg/postgresql:18.1-system-trixie
89+
image: ghcr.io/cloudnative-pg/postgresql:18.3-system-trixie
9090
```
9191

9292
### Referencing a Catalog in a Cluster
@@ -122,7 +122,7 @@ metadata:
122122
spec:
123123
images:
124124
- major: 18
125-
image: ghcr.io/cloudnative-pg/postgresql:18.1-minimal-trixie
125+
image: ghcr.io/cloudnative-pg/postgresql:18.3-minimal-trixie
126126
extensions:
127127
- name: foo
128128
image:

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Three image flavors are available, each extending the previous one:
9999
Barman Cloud plugin, or another supported backup solution.
100100
:::
101101

102-
By default, this version of CloudNativePG deploys `ghcr.io/cloudnative-pg/postgresql:18.1-system-trixie`.
102+
By default, this version of CloudNativePG deploys `ghcr.io/cloudnative-pg/postgresql:18.3-system-trixie`.
103103

104104
All images are signed and shipped with SBOM and provenance attestations.
105105
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
@@ -1078,7 +1078,7 @@ it from the actual pod. This means that you will be using the `postgres` user.
10781078
```console
10791079
$ kubectl cnpg psql cluster-example
10801080
1081-
psql (18.1 (Debian 18.1-1.pgdg110+1))
1081+
psql (18.3 (Debian 18.3-1.pgdg110+1))
10821082
Type "help" for help.
10831083
10841084
postgres=#
@@ -1090,7 +1090,7 @@ select to work against a replica by using the `--replica` option:
10901090
```console
10911091
$ kubectl cnpg psql --replica cluster-example
10921092
1093-
psql (18.1 (Debian 18.1-1.pgdg110+1))
1093+
psql (18.3 (Debian 18.3-1.pgdg110+1))
10941094
10951095
Type "help" for help.
10961096

docs/src/monitoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ cnpg_collector_up{cluster="cluster-example"} 1
258258
259259
# HELP cnpg_collector_postgres_version Postgres version
260260
# TYPE cnpg_collector_postgres_version gauge
261-
cnpg_collector_postgres_version{cluster="cluster-example",full="18.1"} 18.1
261+
cnpg_collector_postgres_version{cluster="cluster-example",full="18.3"} 18.3
262262
263263
# HELP cnpg_collector_last_failed_backup_timestamp The last failed backup as a unix timestamp (Deprecated)
264264
# TYPE cnpg_collector_last_failed_backup_timestamp gauge

docs/src/postgis.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ kind: Cluster
9292
metadata:
9393
name: cluster-postgis
9494
spec:
95-
imageName: ghcr.io/cloudnative-pg/postgresql:18.1-minimal-trixie
95+
imageName: ghcr.io/cloudnative-pg/postgresql:18.3-minimal-trixie
9696
instances: 1
9797

9898
storage:
@@ -134,7 +134,7 @@ metadata:
134134
name: cluster-postgis
135135
spec:
136136
instances: 1
137-
imageName: ghcr.io/cloudnative-pg/postgis:18.1-3.6.2-system-trixie
137+
imageName: ghcr.io/cloudnative-pg/postgis:18.3-3.6.2-system-trixie
138138
storage:
139139
size: 1Gi
140140
```

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.1-system-trixie
38+
imageName: ghcr.io/cloudnative-pg/postgresql:18.3-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/samples/postgis-example.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: Cluster
33
metadata:
44
name: postgis-example
55
spec:
6-
imageName: ghcr.io/cloudnative-pg/postgresql:18.1-minimal-trixie
6+
imageName: ghcr.io/cloudnative-pg/postgresql:18.3-minimal-trixie
77
instances: 1
88

99
storage:

0 commit comments

Comments
 (0)