Skip to content

Commit de1a3bc

Browse files
Merge pull request #264020 from chasewilson/chase/hostNsgControlGA
Host Network NSG control GA PR
2 parents a87096a + 7890268 commit de1a3bc

File tree

1 file changed

+2
-38
lines changed

1 file changed

+2
-38
lines changed

articles/aks/use-node-public-ips.md

Lines changed: 2 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Use instance-level public IPs in Azure Kubernetes Service (AKS)
33
description: Learn how to manage instance-level public IPs Azure Kubernetes Service (AKS)
44
ms.topic: article
55
ms.custom: devx-track-azurecli
6-
ms.date: 1/12/2023
6+
ms.date: 01/23/2024
77
ms.author: pahealy
88
author: phealy
99
---
@@ -132,7 +132,7 @@ az aks nodepool add --cluster-name <clusterName> -n <nodepoolName> -l <location>
132132
--node-public-ip-tags RoutingPreference=Internet
133133
```
134134

135-
## Allow host port connections and add node pools to application security groups (PREVIEW)
135+
## Allow host port connections and add node pools to application security groups
136136

137137
AKS nodes utilizing node public IPs that host services on their host address need to have an NSG rule added to allow the traffic. Adding the desired ports in the node pool configuration will create the appropriate allow rules in the cluster network security group.
138138

@@ -149,47 +149,11 @@ Examples:
149149
- 53/udp,80/tcp
150150
- 50000-60000/tcp
151151

152-
[!INCLUDE [preview features callout](includes/preview/preview-callout.md)]
153-
154152
### Requirements
155153

156154
* AKS version 1.24 or greater is required.
157155
* Version 0.5.110 of the aks-preview extension is required.
158156

159-
### Install the aks-preview Azure CLI extension
160-
161-
To install the aks-preview extension, run the following command:
162-
163-
```azurecli
164-
az extension add --name aks-preview
165-
```
166-
167-
Run the following command to update to the latest version of the extension released:
168-
169-
```azurecli
170-
az extension update --name aks-preview
171-
```
172-
173-
### Register the 'NodePublicIPNSGControlPreview' feature flag
174-
175-
Register the `NodePublicIPNSGControlPreview` feature flag by using the [az feature register][az-feature-register] command, as shown in the following example:
176-
177-
```azurecli-interactive
178-
az feature register --namespace "Microsoft.ContainerService" --name "NodePublicIPNSGControlPreview"
179-
```
180-
181-
It takes a few minutes for the status to show *Registered*. Verify the registration status by using the [az feature show][az-feature-show] command:
182-
183-
```azurecli-interactive
184-
az feature show --namespace "Microsoft.ContainerService" --name "NodePublicIPNSGControlPreview"
185-
```
186-
187-
When the status reflects *Registered*, refresh the registration of the *Microsoft.ContainerService* resource provider by using the [az provider register][az-provider-register] command:
188-
189-
```azurecli-interactive
190-
az provider register --namespace Microsoft.ContainerService
191-
```
192-
193157
### Create a new cluster with allowed ports and application security groups
194158

195159
```azurecli-interactive

0 commit comments

Comments
 (0)