Skip to content

Commit da967fc

Browse files
committed
Update to address comments
1 parent 88fdf12 commit da967fc

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

articles/aks/load-balancer-standard.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ You can customize different settings for your standard public load balancer at c
114114
> [!IMPORTANT]
115115
> Only one outbound IP option (managed IPs, bring your own IP, or IP prefix) can be used at a given time.
116116

117-
### Change the outbound pool type (PREVIEW)
117+
### Change the inbound pool type (PREVIEW)
118118

119119
AKS nodes can be referenced in the load balancer backend pools by either their IP configuration (VMSS based membership) or by their IP address only. Utilizing the IP address based backend pool membership provides higher efficiencies when updating services and provisioning load balancers, especially at high node counts. Provisioning new clusters with IP based backend pools and converting existing clusters is now supported. When combined with NAT Gateway or user-defined routing egress types, provisioning of new nodes and services will be more performant.
120120

@@ -129,6 +129,10 @@ Two different pool membership types are available:
129129
* The AKS cluster must be version 1.23 or newer.
130130
* The AKS cluster must be using standard load balancers and virtual machine scale sets.
131131

132+
#### Limitations
133+
134+
* Clusters using IP based backend pools are limited to 2500 nodes.
135+
132136
[!INCLUDE [preview features callout](./includes/preview/preview-callout.md)]
133137

134138
#### Install the aks-preview CLI extension
@@ -143,7 +147,7 @@ az extension update --name aks-preview
143147

144148
#### Register the `IPBasedLoadBalancerPreview` preview feature
145149

146-
To create an AKS cluster with API Server VNet Integration, you must enable the `IPBasedLoadBalancerPreview` feature flag on your subscription.
150+
To create an AKS cluster with IP based backend pools, you must enable the `IPBasedLoadBalancerPreview` feature flag on your subscription.
147151

148152
Register the `IPBasedLoadBalancerPreview` feature flag by using the `az feature register` command, as shown in the following example:
149153

@@ -163,7 +167,7 @@ When the feature has been registered, refresh the registration of the *Microsoft
163167
az provider register --namespace Microsoft.ContainerService
164168
```
165169

166-
#### Create a new AKS cluster with IP-based outbound pool membership
170+
#### Create a new AKS cluster with IP-based inbound pool membership
167171

168172
```azurecli-interactive
169173
az aks create \
@@ -172,7 +176,7 @@ az aks create \
172176
--load-balancer-backend-pool-type=nodeIP
173177
```
174178

175-
#### Update an existing AKS cluster to use IP-based outbound pool membership
179+
#### Update an existing AKS cluster to use IP-based inbound pool membership
176180

177181
> [!WARNING]
178182
> This operation will cause a temporary disruption to incoming service traffic in the cluster. The impact time will increase with larger clusters that have many nodes.

0 commit comments

Comments
 (0)