Skip to content

Commit bb53df3

Browse files
committed
Updating title to include user-assigned reference as well - per GitIssue feedback
1 parent b64e1b3 commit bb53df3

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/aks/nat-gateway.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Managed NAT Gateway
2+
title: Create a managed or user-assigned NAT gateway
33
titleSuffix: Azure Kubernetes Service
4-
description: Learn how to create an AKS cluster with managed NAT integration
4+
description: Learn how to create an AKS cluster with managed NAT integration and user-assigned NAT gateway.
55
author: asudbring
66
ms.subservice: aks-networking
77
ms.custom: devx-track-azurecli
@@ -10,21 +10,21 @@ ms.date: 10/26/2021
1010
ms.author: allensu
1111
---
1212

13-
# Managed NAT Gateway
13+
# Create a managed or user-assigned NAT gateway
1414

1515
While you can route egress traffic through an Azure Load Balancer, there are limitations on the amount of outbound flows of traffic you can have. Azure NAT Gateway allows up to 64,512 outbound UDP and TCP traffic flows per IP address with a maximum of 16 IP addresses.
1616

17-
This article shows you how to create an AKS cluster with a Managed NAT Gateway for egress traffic and how to disable OutboundNAT on Windows.
17+
This article shows you how to create an AKS cluster with a managed NAT gateway and a user-assigned NAT gateway for egress traffic and how to disable OutboundNAT on Windows.
1818

1919
## Before you begin
2020

2121
* Make sure you're using the latest version of [Azure CLI][az-cli].
2222
* Make sure you're using Kubernetes version 1.20.x or above.
2323
* Managed NAT Gateway is incompatible with custom virtual networks.
2424

25-
## Create an AKS cluster with a Managed NAT Gateway
25+
## Create an AKS cluster with a managed NAT gateway
2626

27-
To create an AKS cluster with a new Managed NAT Gateway, use `--outbound-type managedNATGateway`, `--nat-gateway-managed-outbound-ip-count`, and `--nat-gateway-idle-timeout` when running `az aks create`. If you want the NAT gateway to be able to operate out of availability zones, specify the zones using `--zones`.
27+
To create an AKS cluster with a new managed NAT Gateway, use `--outbound-type managedNATGateway`, `--nat-gateway-managed-outbound-ip-count`, and `--nat-gateway-idle-timeout` when running `az aks create`. If you want the NAT gateway to be able to operate out of availability zones, specify the zones using `--zones`.
2828

2929
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.
3030

@@ -56,9 +56,9 @@ az aks update \
5656
--nat-gateway-managed-outbound-ip-count 5
5757
```
5858

59-
## Create an AKS cluster with a user-assigned NAT Gateway
59+
## Create an AKS cluster with a user-assigned NAT gateway
6060

61-
To create an AKS cluster with a user-assigned NAT Gateway, use `--outbound-type userAssignedNATGateway` when running `az aks create`. 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. Make sure to run them all in the same session so that the values stored to variables are still available for the `az aks create` command.
61+
To create an AKS cluster with a user-assigned NAT gateway, use `--outbound-type userAssignedNATGateway` when running `az aks create`. 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. Make sure to run them all in the same session so that the values stored to variables are still available for the `az aks create` command.
6262

6363
1. Create the resource group.
6464

0 commit comments

Comments
 (0)