Skip to content

Commit 2652b9d

Browse files
Merge pull request #272047 from allyford/windows-disable-outbound-nat-ga
Windows Disable Outbond NAT GA
2 parents 76a0408 + f850bbe commit 2652b9d

File tree

1 file changed

+2
-31
lines changed

1 file changed

+2
-31
lines changed

articles/aks/nat-gateway.md

Lines changed: 2 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -131,44 +131,15 @@ This configuration requires bring-your-own networking (via [Kubenet][byo-vnet-ku
131131
--assign-identity $IDENTITY_ID
132132
```
133133
134-
## Disable OutboundNAT for Windows (Preview)
134+
## Disable OutboundNAT for Windows
135135
136136
Windows OutboundNAT can cause certain connection and communication issues with your AKS pods. An example issue is node port reuse. In this example, Windows OutboundNAT uses ports to translate your pod IP to your Windows node host IP, which can cause an unstable connection to the external service due to a port exhaustion issue.
137137
138138
Windows enables OutboundNAT by default. You can now manually disable OutboundNAT when creating new Windows agent pools.
139139
140140
### Prerequisites
141141
142-
* If you're using Kubernetes version 1.25 or older, you need to [update your deployment configuration][upgrade-kubernetes].
143-
* You need to install or update `aks-preview` and register the feature flag.
144-
145-
1. Install or update `aks-preview` using the [`az extension add`][az-extension-add] or [`az extension update`][az-extension-update] command.
146-
147-
```azurecli-interactive
148-
# Install aks-preview
149-
az extension add --name aks-preview
150-
151-
# Update aks-preview
152-
az extension update --name aks-preview
153-
```
154-
155-
2. Register the feature flag using the [`az feature register`][az-feature-register] command.
156-
157-
```azurecli-interactive
158-
az feature register --namespace Microsoft.ContainerService --name DisableWindowsOutboundNATPreview
159-
```
160-
161-
3. Check the registration status using the [`az feature list`][az-feature-list] command.
162-
163-
```azurecli-interactive
164-
az feature list -o table --query "[?contains(name, 'Microsoft.ContainerService/DisableWindowsOutboundNATPreview')].{Name:name,State:properties.state}"
165-
```
166-
167-
4. Refresh the registration of the `Microsoft.ContainerService` resource provider using the [`az provider register`][az-provider-register] command.
168-
169-
```azurecli-interactive
170-
az provider register --namespace Microsoft.ContainerService
171-
```
142+
* Existing AKS cluster with v1.26 or above. If you're using Kubernetes version 1.25 or older, you need to [update your deployment configuration][upgrade-kubernetes].
172143
173144
### Limitations
174145

0 commit comments

Comments
 (0)