Skip to content

Commit 569471b

Browse files
committed
docs: import CloudNativePG main
1 parent 2506c6b commit 569471b

12 files changed

Lines changed: 22 additions & 22 deletions

website/docs/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.3 cluster,
617+
The following manifest creates a new PostgreSQL 18.4 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.3-system-trixie
632+
imageName: ghcr.io/cloudnative-pg/postgresql:18.4-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.3).
652+
the same PostgreSQL version (in our case 18.4).
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.3 cluster called `cluster-clone-tls`,
668+
The manifest defines a new PostgreSQL 18.4 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.3-system-trixie
683+
imageName: ghcr.io/cloudnative-pg/postgresql:18.4-system-trixie
684684
685685
bootstrap:
686686
pg_basebackup:

website/docs/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.3-system-trixie
60+
PostgreSQL Image: ghcr.io/cloudnative-pg/postgresql:18.4-system-trixie
6161
Primary instance: cluster-example-2
6262
Status: Cluster in healthy state
6363
Instances: 3

website/docs/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.3-system-trixie
70+
image: ghcr.io/cloudnative-pg/postgresql:18.4-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.3-system-trixie
89+
image: ghcr.io/cloudnative-pg/postgresql:18.4-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.3-minimal-trixie
125+
image: ghcr.io/cloudnative-pg/postgresql:18.4-minimal-trixie
126126
extensions:
127127
- name: foo
128128
image:

website/docs/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.3-system-trixie`.
102+
By default, this version of CloudNativePG deploys `ghcr.io/cloudnative-pg/postgresql:18.4-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.

website/docs/kubectl-plugin.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1079,7 +1079,7 @@ method should be used with extreme care, by authorized personnel only.
10791079
```console
10801080
$ kubectl cnpg psql cluster-example
10811081
1082-
psql (18.3 (Debian 18.3-1.pgdg110+1))
1082+
psql (18.4 (Debian 18.4-1.pgdg110+1))
10831083
Type "help" for help.
10841084
10851085
postgres=#
@@ -1091,7 +1091,7 @@ select to work against a replica by using the `--replica` option:
10911091
```console
10921092
$ kubectl cnpg psql --replica cluster-example
10931093
1094-
psql (18.3 (Debian 18.3-1.pgdg110+1))
1094+
psql (18.4 (Debian 18.4-1.pgdg110+1))
10951095
10961096
Type "help" for help.
10971097
@@ -1114,7 +1114,7 @@ specific database:
11141114
```console
11151115
$ kubectl cnpg psql cluster-example -- app
11161116
1117-
psql (18.3 (Debian 18.3-1.pgdg110+1))
1117+
psql (18.4 (Debian 18.4-1.pgdg110+1))
11181118
Type "help" for help.
11191119
11201120
app=#

website/docs/monitoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ cnpg_collector_up{cluster="cluster-example"} 1
265265
266266
# HELP cnpg_collector_postgres_version Postgres version
267267
# TYPE cnpg_collector_postgres_version gauge
268-
cnpg_collector_postgres_version{cluster="cluster-example",full="18.3"} 18.3
268+
cnpg_collector_postgres_version{cluster="cluster-example",full="18.4"} 18.4
269269
270270
# HELP cnpg_collector_last_failed_backup_timestamp The last failed backup as a unix timestamp (Deprecated)
271271
# TYPE cnpg_collector_last_failed_backup_timestamp gauge

website/docs/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.3-minimal-trixie
95+
imageName: ghcr.io/cloudnative-pg/postgresql:18.4-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.3-3.6.2-system-trixie
137+
imageName: ghcr.io/cloudnative-pg/postgis:18.4-3.6.2-system-trixie
138138
storage:
139139
size: 1Gi
140140
```

website/docs/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.3-system-trixie
38+
imageName: ghcr.io/cloudnative-pg/postgresql:18.4-system-trixie
3939
# imagePullSecret is only required if the images are located in a private registry
4040
# imagePullSecrets:
4141
# - name: private_registry_access

website/docs/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.3-minimal-trixie
6+
imageName: ghcr.io/cloudnative-pg/postgresql:18.4-minimal-trixie
77
instances: 1
88

99
storage:

website/docs/scheduling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ metadata:
4848
name: cluster-example
4949
spec:
5050
instances: 3
51-
imageName: ghcr.io/cloudnative-pg/postgresql:18.3-system-trixie
51+
imageName: ghcr.io/cloudnative-pg/postgresql:18.4-system-trixie
5252

5353
affinity:
5454
enablePodAntiAffinity: true # Default value

0 commit comments

Comments
 (0)