Skip to content

Commit d20f861

Browse files
committed
Removes preview language from dualstack overlay for Linux
1 parent 6e6589e commit d20f861

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
@@ -193,16 +193,13 @@ Since the cluster is already using a private CIDR for pods which doesn't overlap
193193
> [!NOTE]
194194
> 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.
195195
196-
## Dual-stack Networking (Preview)
196+
## Dual-stack Networking
197197

198198
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).
199199

200-
[!INCLUDE [preview features callout](includes/preview/preview-callout.md)]
201-
202200
### Prerequisites
203201

204202
- You must have Azure CLI 2.48.0 or later installed.
205-
- You must register the `Microsoft.ContainerService` `AzureOverlayDualStackPreview` feature flag.
206203
- Kubernetes version 1.26.3 or greater.
207204

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

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-
251228
### Create a dual-stack AKS cluster
252229

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

0 commit comments

Comments
 (0)