Skip to content

Commit e3c27f2

Browse files
Merge pull request #218749 from naioja/aj_aks_natgateway
NAT Gateway uses minutes rather than seconds for configuring timeouts therefore 30 minutes is not reasonable, setting this to 4 minutes.
2 parents fc2c1e8 + f2cfb24 commit e3c27f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/aks/nat-gateway.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ To use Managed NAT gateway, you must have the following:
2424
* Kubernetes version 1.20.x or above
2525

2626
## Create an AKS cluster with a Managed NAT Gateway
27-
To create an AKS cluster with a new Managed NAT Gateway, use `--outbound-type managedNATGateway` as well as `--nat-gateway-managed-outbound-ip-count` and `--nat-gateway-idle-timeout` when running `az aks create`. The following example creates a *myresourcegroup* resource group, then creates a *natcluster* AKS cluster in *myresourcegroup* with a Managed NAT Gateway, two outbound IPs, and an idle timeout of 30 seconds.
27+
To create an AKS cluster with a new Managed NAT Gateway, use `--outbound-type managedNATGateway` as well as `--nat-gateway-managed-outbound-ip-count` and `--nat-gateway-idle-timeout` when running `az aks create`. The following example creates a *myresourcegroup* resource group, then creates a *natcluster* AKS cluster in *myresourcegroup* with a Managed NAT Gateway, two outbound IPs, and an idle timeout of 4 minutes.
2828

2929

3030
```azurecli-interactive
@@ -38,7 +38,7 @@ az aks create \
3838
--node-count 3 \
3939
--outbound-type managedNATGateway \
4040
--nat-gateway-managed-outbound-ip-count 2 \
41-
--nat-gateway-idle-timeout 30
41+
--nat-gateway-idle-timeout 4
4242
```
4343

4444
> [!IMPORTANT]

0 commit comments

Comments
 (0)