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/aks/load-balancer-standard.md
+10-9Lines changed: 10 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,12 +86,16 @@ When using a *Standard* SKU load balancer, the AKS cluster automatically creates
86
86
87
87
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.
88
88
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
95
99
96
100
Use the [az network public-ip show][az-network-public-ip-show] command to list the IDs of your public IPs.
> The public IPs and IP prefixes must be in the same region and part of the same subscription as your AKS cluster.
134
-
135
136
### Define your own public IP or prefixes at cluster create time
136
137
137
138
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