Skip to content

Commit 4f26944

Browse files
Merge pull request #267889 from chasewilson/chase/OverlayDualstackGa
Removes preview language from dualstack overlay for Linux
2 parents 24875ff + d20f861 commit 4f26944

File tree

1 file changed

+1
-24
lines changed

1 file changed

+1
-24
lines changed

articles/aks/azure-cni-overlay.md

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -196,16 +196,13 @@ Since the cluster is already using a private CIDR for pods which doesn't overlap
196196
> [!NOTE]
197197
> 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.
198198
199-
## Dual-stack Networking (Preview)
199+
## Dual-stack Networking
200200

201201
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).
202202

203-
[!INCLUDE [preview features callout](includes/preview/preview-callout.md)]
204-
205203
### Prerequisites
206204

207205
- You must have Azure CLI 2.48.0 or later installed.
208-
- You must register the `Microsoft.ContainerService` `AzureOverlayDualStackPreview` feature flag.
209206
- Kubernetes version 1.26.3 or greater.
210207

211208
### Limitations
@@ -231,26 +228,6 @@ The following attributes are provided to support dual-stack clusters:
231228
* If no values are supplied, the default value `10.0.0.0/16,fd12:3456:789a:1::/108` is used.
232229
* The IPv6 subnet assigned to `--service-cidrs` can be no larger than a /108.
233230

234-
### Register the `AzureOverlayDualStackPreview` feature flag
235-
236-
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*.
237-
238-
```azurecli-interactive
239-
az feature register --namespace "Microsoft.ContainerService" --name "AzureOverlayDualStackPreview"
240-
```
241-
242-
2. Verify the registration status using the [`az feature show`][az-feature-show] command.
243-
244-
```azurecli-interactive
245-
az feature show --namespace "Microsoft.ContainerService" --name "AzureOverlayDualStackPreview"
246-
```
247-
248-
3. When the status reflects *Registered*, refresh the registration of the *Microsoft.ContainerService* resource provider using the [`az provider register`][az-provider-register] command.
249-
250-
```azurecli-interactive
251-
az provider register --namespace Microsoft.ContainerService
252-
```
253-
254231
### Create a dual-stack AKS cluster
255232

256233
1. Create an Azure resource group for the cluster using the [`az group create`][az-group-create] command.

0 commit comments

Comments
 (0)