You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/multi/pub-ep.md
+22-3Lines changed: 22 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,6 @@
10
10
11
11
```bash, editable
12
12
cp terraform.tfvars.example terraform.tfvars
13
-
14
13
```
15
14
16
15
2. Provide values for the following input variables:
@@ -113,7 +112,7 @@ clusters = {
113
112
Do not remove those that you are not using.
114
113
```
115
114
116
-
6. For the regions you enable, uncomment them in `modules\clusters\outputs.tf` for `cluster_ids`, `int_nsg_ids` and `pub_nsg_ids`. For the clusters that you do not use, leave them commented e.g.
115
+
6. For the managed clusters you enable, uncomment them in `modules\clusters\outputs.tf` for `cluster_ids`, `int_nsg_ids` and `pub_nsg_ids`. For the clusters that you do not use, leave them commented e.g.
117
116
118
117
```terraform,editable
119
118
output "cluster_ids" {
@@ -155,6 +154,13 @@ output "cluster_ids" {
155
154
}
156
155
}
157
156
```
157
+
158
+
```admonish warning
159
+
In the outputs.tf, you must uncomment only the regions where you are running the managed clusters, not your the region where your admin cluster is running.
160
+
161
+
Only uncomment the admin region in outputs if you happen to also run a managed cluster in the same region as your admin cluster.
162
+
```
163
+
158
164
7. Uncomment the respective clusters that you have enabled. The clusters are created in either {country, continent,region}.tf. e.g. Ashburn will be found in `usa.tf` under `modules\clusters`. Leave the clusters that you do not use as commented.
159
165
160
166
```admonish info
@@ -171,7 +177,7 @@ install_verrazzano = false
171
177
When provisioning the cluster, the above 2 variables must set to `false`.
172
178
```
173
179
174
-
7. Create the cluster by running Terraform:
180
+
7. Create the clusters by running Terraform:
175
181
176
182
```bash,editable
177
183
terraform init
@@ -185,6 +191,19 @@ terraform apply
185
191
The operator host is created in the admin region only.
186
192
```
187
193
194
+
## Configure connectivity with Remote Peering Connection
195
+
196
+
1. In OCI console, select your admin region and navigate to Networking > Dynamic Routing Gateway. Click on the admin drg.
197
+
2. Under Resources, click on Remote Peering Connections Attachments.
198
+
3. Under Remote Peering Connections, click on the Remote Peering Connection.
199
+
4. Copy the RPC OCID (in the right column). Do not mistake the RPC OCID for the DRG OCID which is also shown on the left.
200
+
5. If your managed cluster is in another region, select the managed cluster's region. This will change the OCI Console page to Networking > Dynamic Routing Gateway.
201
+
6. Repeat steps 2-3.
202
+
7. Click on "Establish Connection".
203
+
8. Select the region of the Admin cluster.
204
+
9. Paste the RPC OCID you copied from Step 4 and click on "Establish Connection".
205
+
10. Wait for the Remote Peering to be established.
0 commit comments