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
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -114,7 +114,7 @@ You can customize different settings for your standard public load balancer at c
114
114
> [!IMPORTANT]
115
115
> Only one outbound IP option (managed IPs, bring your own IP, or IP prefix) can be used at a given time.
116
116
117
-
### Change the outbound pool type (PREVIEW)
117
+
### Change the inbound pool type (PREVIEW)
118
118
119
119
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.
120
120
@@ -129,6 +129,10 @@ Two different pool membership types are available:
129
129
* The AKS cluster must be version 1.23 or newer.
130
130
* The AKS cluster must be using standard load balancers and virtual machine scale sets.
131
131
132
+
#### Limitations
133
+
134
+
* Clusters using IP based backend pools are limited to 2500 nodes.
135
+
132
136
[!INCLUDE [preview features callout](./includes/preview/preview-callout.md)]
133
137
134
138
#### Install the aks-preview CLI extension
@@ -143,7 +147,7 @@ az extension update --name aks-preview
143
147
144
148
#### Register the `IPBasedLoadBalancerPreview` preview feature
145
149
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.
147
151
148
152
Register the `IPBasedLoadBalancerPreview` feature flag by using the `az feature register` command, as shown in the following example:
149
153
@@ -163,7 +167,7 @@ When the feature has been registered, refresh the registration of the *Microsoft
163
167
az provider register --namespace Microsoft.ContainerService
164
168
```
165
169
166
-
#### Create a new AKS cluster with IP-based outbound pool membership
170
+
#### Create a new AKS cluster with IP-based inbound pool membership
167
171
168
172
```azurecli-interactive
169
173
az aks create \
@@ -172,7 +176,7 @@ az aks create \
172
176
--load-balancer-backend-pool-type=nodeIP
173
177
```
174
178
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
176
180
177
181
> [!WARNING]
178
182
> 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