Skip to content

Commit a30a793

Browse files
committed
Revert last
1 parent 3eddb33 commit a30a793

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

AKS-Arc/deploy-ai-model.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,22 +83,16 @@ az aksarc update --resource-group <Resource_Group_name> --name <Cluster_Name> --
8383

8484
2. After the node pool is provisioned, you can confirm whether the node is successfully provisioned using the node pool name:
8585

86-
### [Azure CLI](#tab/azurecli)
87-
8886
```azurecli
8987
kubectl get nodes --show-labels | grep "msft.microsoft/nodepool-name=.*<Node_Pool_Name>" | awk '{print $1}'
9088
```
9189

92-
### [PowerShell](#tab/powershell)
93-
9490
For PowerShell, you can use the following command:
9591

9692
```powershell
9793
kubectl get nodes --show-labels | Select-String "msft.microsoft/nodepool-name=.*<Node_Pool_Name>" | ForEach-Object { ($_ -split '\s+')[0] }
9894
```
9995

100-
---
101-
10296
3. Label the newly provisioned GPU node so the inference workspace can be deployed to the node in the next step. You can make sure the label is applied using `kubectl get nodes`.
10397

10498
```powershell

0 commit comments

Comments
 (0)