Skip to content

Commit 77f5675

Browse files
author
Justin
committed
add limitation of no managed IPs for BYO, reformat for pre-reqs
1 parent 505a56f commit 77f5675

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

articles/aks/load-balancer-standard.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,16 @@ When using a *Standard* SKU load balancer, the AKS cluster automatically creates
8686

8787
By bringing multiple IP addresses or prefixes, you are able to define multiple backing services when defining the IP address behind a single load balancer object. The egress endpoint of specific nodes will depend on what service they are associated with.
8888

89-
> [!IMPORTANT]
90-
> You must use *Standard* SKU public IPs for egress with your *Standard* SKU your load balancer. You can verify the SKU of your public IPs using the [az network public-ip show][az-network-public-ip-show] command:
91-
>
92-
> ```azurecli-interactive
93-
> az network public-ip show --resource-group myResourceGroup --name myPublicIP --query sku.name -o tsv
94-
> ```
89+
### Pre-requisites to bring-your-own IP addresses or IP prefixes
90+
1. You must use *Standard* SKU public IPs for egress with your *Standard* SKU your load balancer. You can verify the SKU of your public IPs using the [az network public-ip show][az-network-public-ip-show] command:
91+
92+
```azurecli-interactive
93+
az network public-ip show --resource-group myResourceGroup --name myPublicIP --query sku.name -o tsv
94+
```
95+
1. The public IPs and IP prefixes must be in the same region and part of the same subscription as your AKS cluster.
96+
1. The public IPs and IP prefixes cannot be IPs created by AKS as a managed IP. Ensure any IPs specified as custom IPs were created manually and not be the AKS service.
97+
98+
### Define your own public IP or prefixes on an existing cluster
9599

96100
Use the [az network public-ip show][az-network-public-ip-show] command to list the IDs of your public IPs.
97101

@@ -129,9 +133,6 @@ az aks update \
129133
--load-balancer-outbound-ip-prefixes <publicIpPrefixId1>,<publicIpPrefixId2>
130134
```
131135

132-
> [!IMPORTANT]
133-
> The public IPs and IP prefixes must be in the same region and part of the same subscription as your AKS cluster.
134-
135136
### Define your own public IP or prefixes at cluster create time
136137

137138
You may wish to bring your own IP addresses or IP prefixes for egress at cluster creation time to support scenarios like whitelisting egress endpoints. Append the same parameters shown above to your cluster creation step to define your own public IPs and IP prefixes at the start of a cluster's lifecycle.

0 commit comments

Comments
 (0)