You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/aks/use-node-public-ips.md
+2-38Lines changed: 2 additions & 38 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Use instance-level public IPs in Azure Kubernetes Service (AKS)
3
3
description: Learn how to manage instance-level public IPs Azure Kubernetes Service (AKS)
4
4
ms.topic: article
5
5
ms.custom: devx-track-azurecli
6
-
ms.date: 1/12/2023
6
+
ms.date: 01/23/2024
7
7
ms.author: pahealy
8
8
author: phealy
9
9
---
@@ -132,7 +132,7 @@ az aks nodepool add --cluster-name <clusterName> -n <nodepoolName> -l <location>
132
132
--node-public-ip-tags RoutingPreference=Internet
133
133
```
134
134
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
136
136
137
137
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.
138
138
@@ -149,47 +149,11 @@ Examples:
149
149
- 53/udp,80/tcp
150
150
- 50000-60000/tcp
151
151
152
-
[!INCLUDE [preview features callout](includes/preview/preview-callout.md)]
153
-
154
152
### Requirements
155
153
156
154
* AKS version 1.24 or greater is required.
157
155
* Version 0.5.110 of the aks-preview extension is required.
158
156
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
-
193
157
### Create a new cluster with allowed ports and application security groups
0 commit comments