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: articles/openshift/howto-multiple-ips.md
+25-3Lines changed: 25 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ author: johnmarco
5
5
ms.author: johnmarc
6
6
ms.service: azure-redhat-openshift
7
7
ms.topic: article
8
-
ms.date: 01/30/2024
8
+
ms.date: 03/05/2024
9
9
#Customer intent: As an ARO SRE, I need to configure multiple outbound IP addresses per ARO cluster load balancers
10
10
---
11
11
# Configure multiple IP addresses per ARO cluster load balancer (Preview)
@@ -14,9 +14,31 @@ ARO public clusters are created with a public load balancer that's used for outb
14
14
15
15
You can configure up to 20 IP addresses per cluster. The outbound rules and frontend IP configurations are adjusted to accommodate the number of IP addresses.
16
16
17
-
## Requirements (Preview only)
17
+
## Requirements
18
18
19
-
In order to run the commands in this article, you must first download the aro extension wheel file from [https://aka.ms/az-aroext-latest](https://aka.ms/az-aroext-latest). To install the extension, run the following command:
19
+
The multiple public IPs feature is only available on the current network architecture used by ARO; older clusters do not support this feature. If your cluster was created before OpenShift Container Platform (OCP) version 4.5, this feature won't be available even if you've upgraded your OCP version since then.
20
+
21
+
If you're unsure if your cluster was created before the current version of OCP, use the following commands to check.
22
+
23
+
To get the cluster managed resource group:
24
+
25
+
```
26
+
RESOURCEGROUP=aro-rg # the name of the resource group your cluster is in
27
+
CLUSTER=cluster # the name of your cluster
28
+
CLUSTER_RESOURCEGROUP=$(az aro show -g $RESOURCEGROUP -n $CLUSTER --query clusterProfile.resourceGroupId -o tsv | awk -F'/' '{print $NF}')
29
+
```
30
+
31
+
List the network load balancers:
32
+
33
+
```
34
+
az network lb list -g $CLUSTER_RESOURCEGROUP -o table
35
+
```
36
+
37
+
If you have a loadbalancer named `$CLUSTER-public-lb`, the cluster has the older network architecture and cannot use the multiple public IP feature.
38
+
39
+
### Download ARO extension wheel file (Preview only)
40
+
41
+
In order to run the commands in this article, you must first download the ARO extension wheel file from [https://aka.ms/az-aroext-latest](https://aka.ms/az-aroext-latest). To install the extension, run the following command:
20
42
21
43
`az extension add -s <path to downloaded whl file>`
0 commit comments