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/azure-cni-overlay.md
+1-24Lines changed: 1 addition & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -193,16 +193,13 @@ Since the cluster is already using a private CIDR for pods which doesn't overlap
193
193
> [!NOTE]
194
194
> When upgrading from Kubenet to CNI Overlay, the route table will no longer be required for pod routing. If the cluster is using a customer provided route table, the routes which were being used to direct pod traffic to the correct node will automatically be deleted during the migration operation. If the cluster is using a managed route table (the route table was created by AKS and lives in the node resource group) then that route table will be deleted as part of the migration.
195
195
196
-
## Dual-stack Networking (Preview)
196
+
## Dual-stack Networking
197
197
198
198
You can deploy your AKS clusters in a dual-stack mode when using Overlay networking and a dual-stack Azure virtual network. In this configuration, nodes receive both an IPv4 and IPv6 address from the Azure virtual network subnet. Pods receive both an IPv4 and IPv6 address from a logically different address space to the Azure virtual network subnet of the nodes. Network address translation (NAT) is then configured so that the pods can reach resources on the Azure virtual network. The source IP address of the traffic is NAT'd to the node's primary IP address of the same family (IPv4 to IPv4 and IPv6 to IPv6).
199
199
200
-
[!INCLUDE [preview features callout](includes/preview/preview-callout.md)]
201
-
202
200
### Prerequisites
203
201
204
202
- You must have Azure CLI 2.48.0 or later installed.
205
-
- You must register the `Microsoft.ContainerService``AzureOverlayDualStackPreview` feature flag.
206
203
- Kubernetes version 1.26.3 or greater.
207
204
208
205
### Limitations
@@ -228,26 +225,6 @@ The following attributes are provided to support dual-stack clusters:
228
225
* If no values are supplied, the default value `10.0.0.0/16,fd12:3456:789a:1::/108` is used.
229
226
* The IPv6 subnet assigned to `--service-cidrs` can be no larger than a /108.
230
227
231
-
### Register the `AzureOverlayDualStackPreview` feature flag
232
-
233
-
1. Register the `AzureOverlayDualStackPreview` feature flag using the [`az feature register`][az-feature-register] command. It takes a few minutes for the status to show *Registered*.
234
-
235
-
```azurecli-interactive
236
-
az feature register --namespace "Microsoft.ContainerService" --name "AzureOverlayDualStackPreview"
237
-
```
238
-
239
-
2. Verify the registration status using the [`az feature show`][az-feature-show] command.
240
-
241
-
```azurecli-interactive
242
-
az feature show --namespace "Microsoft.ContainerService" --name "AzureOverlayDualStackPreview"
243
-
```
244
-
245
-
3. When the status reflects *Registered*, refresh the registration of the *Microsoft.ContainerService* resource provider using the [`az provider register`][az-provider-register] command.
246
-
247
-
```azurecli-interactive
248
-
az provider register --namespace Microsoft.ContainerService
249
-
```
250
-
251
228
### Create a dual-stack AKS cluster
252
229
253
230
1. Create an Azure resource group for the cluster using the [`az group create`][az-group-create] command.
0 commit comments