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/configure-kubenet-dualstack.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ ms.topic: article
6
6
ms.date: 12/15/2021
7
7
---
8
8
9
-
# Use dual-stack kubenet networking in Azure Kubernetes Service (AKS) (PREVIEW)
9
+
# Use dual-stack kubenet networking in Azure Kubernetes Service (AKS) (Preview)
10
10
11
11
AKS clusters can now be deployed in a dual-stack (using both IPv4 and IPv6 addresses) mode when using [kubenet][kubenet] 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).
12
12
@@ -15,7 +15,8 @@ This article shows you how to use dual-stack networking with an AKS cluster. For
15
15
[!INCLUDE [preview features callout](./includes/preview/preview-callout.md)]
16
16
17
17
## Limitations
18
-
18
+
> [!NOTE]
19
+
> Dual-stack kubenet networking is currently not available in sovereign clouds. This note will be removed when rollout is complete.
19
20
* Azure Route Tables have a hard limit of 400 routes per table. Because each node in a dual-stack cluster requires two routes, one for each IP address family, dual-stack clusters are limited to 200 nodes.
20
21
* During preview, service objects are only supported with `externalTrafficPolicy: Local`.
21
22
* Dual-stack networking is required for the Azure Virtual Network and the pod CIDR - single stack IPv6-only isn't supported for node or pod IP addresses. Services can be provisioned on IPv4 or IPv6.
@@ -127,7 +128,7 @@ az aks get-credentials -g <ResourceGroupName> -n <ClusterName> -a
127
128
128
129
### Inspect the nodes to see both IP families
129
130
130
-
Once the cluster is provisioned, check the nodes are provisioned with dual-stack networking:
131
+
Once the cluster is provisioned, confirm that the nodes are provisioned with dual-stack networking:
131
132
132
133
```bash-interactive
133
134
kubectl get nodes -o=custom-columns="NAME:.metadata.name,ADDRESSES:.status.addresses[?(@.type=='InternalIP')].address,PODCIDRS:.spec.podCIDRs[*]"
@@ -227,7 +228,6 @@ curl -s "http://[${SERVICE_IP}]" | head -n5
0 commit comments