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-multiple-node-pools.md
+12-3Lines changed: 12 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -724,7 +724,7 @@ It may take a few minutes to update your AKS cluster depending on the node pool
724
724
> You must install the CLI preview extension 0.4.43 or greater to use the public IP per node feature.
725
725
726
726
> [!Important]
727
-
> The Azure Instance Metadata Service doesn't currently support public IP addresses for the standard tier VM SKU. Due to this limitation, you can't use kubectl commands to display the public IPs assigned to the nodes. However, the IPs are assigned and function as intended. You can use the PowerShell command [Get-AzPublicIpAddress](https://docs.microsoft.com/powershell/module/az.network/get-azpublicipaddress?view=azps-3.8.0) to view the public IPs.
727
+
> The Azure Instance Metadata Service doesn't currently support public IP addresses for the standard tier VM SKU. Due to this limitation, you can't use kubectl commands to display the public IPs assigned to the nodes. However, the IPs are assigned and function as intended.
728
728
729
729
AKS nodes do not require their own public IP addresses for communication. However, scenarios may require nodes in a node pool to receive their own dedicated public IP addresses. An common scenario is for gaming workloads, where a console needs to make a direct connection to a cloud virtual machine to minimize hops. This scenario can be achieved on AKS by registering for a preview feature, Node Public IP (preview).
730
730
@@ -765,10 +765,18 @@ For existing AKS clusters, you can also add a new node pool, and attach a public
765
765
az aks nodepool add -g MyResourceGroup2 --cluster-name MyManagedCluster -n nodepool2 --enable-node-public-ip
766
766
```
767
767
768
-
You can view the public IPs for your nodes with [PowerShell or Bash commands][vmss-commands]. You can also view the public IPs in the Azure Portal by viewing the instances in the Virtual Machine Scale Set.
768
+
You can find the public IPs for your nodes in various ways. The public IPs for your nodes are attached to the instances in your Virtual Machine Scale Set.
769
+
770
+
* Use the Azure CLI command [az vmss list-instance-public-ips][az-list-ips]
771
+
* Use [PowerShell or Bash commands][vmss-commands].
772
+
* You can also view the public IPs in the Azure Portal by viewing the instances in the Virtual Machine Scale Set.
769
773
770
774
> [!Important]
771
-
> The [node resource group][node-resource-group] contains the nodes and their public IPs. Use the node resource group with the following PowerShell command:
775
+
> The [node resource group][node-resource-group] contains the nodes and their public IPs. Use the node resource group when executing commands to find the public IPs for your nodes.
776
+
777
+
```azurecli
778
+
az vmss list-instance-public-ips -g MC_MyResourceGroup2_MyManagedCluster_eastus -n YourVirtualMachineScaleSetName
0 commit comments