Skip to content

Commit 3253d16

Browse files
Merge pull request #262944 from aimee-littleton/patch-183
Update nat-gateway.md
2 parents 405238c + 43865fd commit 3253d16

1 file changed

Lines changed: 5 additions & 10 deletions

File tree

articles/aks/nat-gateway.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: asudbring
66
ms.subservice: aks-networking
77
ms.custom: devx-track-azurecli
88
ms.topic: how-to
9-
ms.date: 05/30/2023
9+
ms.date: 01/10/2024
1010
ms.author: allensu
1111
---
1212

@@ -25,20 +25,17 @@ This article shows you how to create an Azure Kubernetes Service (AKS) cluster w
2525
## Create an AKS cluster with a managed NAT gateway
2626

2727
* Create an AKS cluster with a new managed NAT gateway using the [`az aks create`][az-aks-create] command with the `--outbound-type managedNATGateway`, `--nat-gateway-managed-outbound-ip-count`, and `--nat-gateway-idle-timeout` parameters. If you want the NAT gateway to operate out of a specific availability zone, specify the zone using `--zones`.
28-
* If no zone is specified when creating a managed NAT gateway, than NAT gateway is deployed to "no zone" by default. No zone NAT gateway resources are deployed to a single availability zone for you by Azure. For more information on non-zonal deployment model, see [non-zonal NAT gateway](/azure/nat-gateway/nat-availability-zones#non-zonal).
28+
* If no zone is specified when creating a managed NAT gateway, then NAT gateway is deployed to "no zone" by default. When NAT gateway is placed in **no zone**, Azure places the resource in a zone for you. For more information on non-zonal deployment model, see [non-zonal NAT gateway](/azure/nat-gateway/nat-availability-zones#non-zonal).
2929
* A managed NAT gateway resource can't be used across multiple availability zones.
3030

31-
```azurecli-interactive
31+
```azurecli-interactive
3232
az aks create \
3333
--resource-group myResourceGroup \
3434
--name myNatCluster \
3535
--node-count 3 \
3636
--outbound-type managedNATGateway \
3737
--nat-gateway-managed-outbound-ip-count 2 \
3838
--nat-gateway-idle-timeout 4
39-
```
40-
41-
### Update the number of outbound IP addresses
4239
4340
* Update the outbound IP address or idle timeout using the [`az aks update`][az-aks-update] command with the `--nat-gateway-managed-outbound-ip-count` or `--nat-gateway-idle-timeout` parameter.
4441
@@ -53,9 +50,7 @@ This article shows you how to create an Azure Kubernetes Service (AKS) cluster w
5350
5451
This configuration requires bring-your-own networking (via [Kubenet][byo-vnet-kubenet] or [Azure CNI][byo-vnet-azure-cni]) and that the NAT gateway is preconfigured on the subnet. The following commands create the required resources for this scenario.
5552
56-
> [!IMPORTANT]
57-
> Zonal configuration for your NAT gateway resource can be done with managed or user-assigned NAT gateway resources.
58-
> If no value for the outbound IP address is specified, the default value is one.
53+
5954
6055
1. Create a resource group using the [`az group create`][az-group-create] command.
6156
@@ -95,7 +90,7 @@ This configuration requires bring-your-own networking (via [Kubenet][byo-vnet-ku
9590
--public-ip-addresses myNatGatewayPip
9691
```
9792
> [!Important]
98-
> A single NAT gateway resource cannot be used across multiple availability zones. To ensure zone-resiliency, it is recommended to deploy a NAT gateway resource to each availability zone and assign to subnets containing AKS clusters in each zone. For more information on this deployment model, see [NAT gateway for each zone](/azure/nat-gateway/nat-availability-zones#zonal-nat-gateway-resource-for-each-zone-in-a-region-to-create-zone-resiliency).
93+
> A single NAT gateway resource can't be used across multiple availability zones. To ensure zone-resiliency, it is recommended to deploy a NAT gateway resource to each availability zone and assign to subnets containing AKS clusters in each zone. For more information on this deployment model, see [NAT gateway for each zone](/azure/nat-gateway/nat-availability-zones#zonal-nat-gateway-resource-for-each-zone-in-a-region-to-create-zone-resiliency).
9994
> If no zone is configured for NAT gateway, the default zone placement is "no zone", in which Azure places NAT gateway into a zone for you.
10095
10196
5. Create a virtual network using the [`az network vnet create`][az-network-vnet-create] command.

0 commit comments

Comments
 (0)