@@ -519,7 +519,7 @@ file on the source PostgreSQL instance:
519519host replication streaming_replica all md5
520520` ` `
521521
522- The following manifest creates a new PostgreSQL 17.0 cluster,
522+ The following manifest creates a new PostgreSQL 17.1 cluster,
523523called `target-db`, using the `pg_basebackup` bootstrap method
524524to clone an external PostgreSQL cluster defined as `source-db`
525525(in the `externalClusters` array). As you can see, the `source-db`
@@ -534,7 +534,7 @@ metadata:
534534 name: target-db
535535spec:
536536 instances: 3
537- imageName: ghcr.io/cloudnative-pg/postgresql:17.0
537+ imageName: ghcr.io/cloudnative-pg/postgresql:17.1
538538
539539 bootstrap:
540540 pg_basebackup:
@@ -554,7 +554,7 @@ spec:
554554` ` `
555555
556556All the requirements must be met for the clone operation to work, including
557- the same PostgreSQL version (in our case 17.0 ).
557+ the same PostgreSQL version (in our case 17.1 ).
558558
559559# ### TLS certificate authentication
560560
@@ -569,7 +569,7 @@ in the same Kubernetes cluster.
569569 This example can be easily adapted to cover an instance that resides
570570 outside the Kubernetes cluster.
571571
572- The manifest defines a new PostgreSQL 17.0 cluster called `cluster-clone-tls`,
572+ The manifest defines a new PostgreSQL 17.1 cluster called `cluster-clone-tls`,
573573which is bootstrapped using the `pg_basebackup` method from the `cluster-example`
574574external cluster. The host is identified by the read/write service
575575in the same cluster, while the `streaming_replica` user is authenticated
@@ -584,7 +584,7 @@ metadata:
584584 name: cluster-clone-tls
585585spec:
586586 instances: 3
587- imageName: ghcr.io/cloudnative-pg/postgresql:17.0
587+ imageName: ghcr.io/cloudnative-pg/postgresql:17.1
588588
589589 bootstrap:
590590 pg_basebackup:
0 commit comments