Skip to content

Commit f53f7b3

Browse files
committed
Added new info
1 parent 0b42864 commit f53f7b3

File tree

1 file changed

+25
-3
lines changed

1 file changed

+25
-3
lines changed

articles/openshift/howto-multiple-ips.md

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: johnmarco
55
ms.author: johnmarc
66
ms.service: azure-redhat-openshift
77
ms.topic: article
8-
ms.date: 01/30/2024
8+
ms.date: 03/05/2024
99
#Customer intent: As an ARO SRE, I need to configure multiple outbound IP addresses per ARO cluster load balancers
1010
---
1111
# 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
1414

1515
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.
1616

17-
## Requirements (Preview only)
17+
## Requirements
1818

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:
2042

2143
`az extension add -s <path to downloaded whl file>`
2244

0 commit comments

Comments
 (0)