Skip to content

Commit 90d9502

Browse files
kbatuigasmicheleRP
andauthored
Cross region support for RRR (#172)
* Cross region support per cloud provider * Customer managed VPC is now BYOVPC * Apply suggestions from code review Co-authored-by: Michele Cyran <[email protected]> --------- Co-authored-by: Michele Cyran <[email protected]>
1 parent f987fd7 commit 90d9502

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

modules/get-started/pages/cluster-types/byoc/remote-read-replicas.adoc

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,16 @@ Redpanda Cloud supports remote read replicas with ephemeral BYOC clusters. Ephem
1010
== Prerequisites
1111

1212
* A BYOC source cluster in Ready state.
13-
* A BYOC reader cluster in Ready state. This separate reader cluster must exist in the same Redpanda organization and the same cloud provider account and region as the source cluster.
13+
* A BYOC reader cluster in Ready state. This separate reader cluster must exist in the same Redpanda organization and the same cloud provider account as the source cluster.
14+
** AWS: The reader cluster must be in the same region as the source cluster.
15+
** GCP: The reader cluster can be in the same or a different region as the source cluster.
16+
** Azure: Remote read replicas are not supported.
1417

15-
=== Customer-managed VPC: Grant storage permissions
18+
=== BYOVPC: Grant storage permissions
1619

1720
[NOTE]
1821
====
19-
This prerequisite only applies to customer-managed VPC deployments. Skip this step if you're enabling remote read replicas on standard BYOC clusters.
22+
This prerequisite only applies to BYOVPC deployments. Skip this step if you're enabling remote read replicas on standard BYOC clusters.
2023
2124
====
2225

@@ -29,7 +32,7 @@ To grant additional permissions to the cloud storage manager of the reader clust
2932
3033
```bash
3134
gcloud storage buckets add-iam-policy-binding \
32-
gs://<source cluster tiered storage bucket name> \
35+
gs://<source-cluster-tiered-storage-bucket-name> \
3336
--member="serviceAccount:<reader cluster redpanda_cluster_service_account email>" \
3437
--role="roles/storage.objectViewer"
3538
```
@@ -87,10 +90,10 @@ A source cluster cannot be deleted if it has remote read replica topics. When yo
8790
To create a remote read replica topic, run:
8891

8992
```bash
90-
rpk topic create my-topic -c redpanda.remote.readreplica=<source cluster tiered storage bucket name> --tls-enabled
93+
rpk topic create my-topic -c redpanda.remote.readreplica=<source-cluster-tiered-storage-bucket-name> --tls-enabled
9194
```
9295

93-
For standard BYOC clusters the source cluster tiered storage bucket name follows the pattern: `redpanda-cloud-storage-$\{SOURCE_CLUSTER_ID}`
96+
For standard BYOC clusters, the source cluster tiered storage bucket name follows the pattern: `redpanda-cloud-storage-$\{SOURCE_CLUSTER_ID}`
9497

9598
== Optional: Tune for live topics
9699

0 commit comments

Comments
 (0)