Skip to content

Commit c7bebe3

Browse files
committed
Fixes
1 parent 252ac0c commit c7bebe3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

AKS-Arc/deploy-ai-model.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ az aksarc update --resource-group <Resource_Group_name> --name <Cluster_Name> --
5757

5858
1. Before you add a GPU node pool, make sure that Azure Local is enabled with a supported GPU such as A2, T4, or A16, and that the GPU drivers are installed on all the host nodes. To add a GPU node pool, follow these steps:
5959

60-
### [Azure portal](#tab/portal)
60+
# [Azure portal](#tab/portal)
6161

6262
Sign in to the Azure portal and find your AKS Arc cluster. Under **Settings > Node pools**, select **Add**. Fill in the other required fields, then create the node pool.
6363

64-
### [Azure CLI](#tab/azurecli)
64+
# [Azure CLI](#tab/azurecli)
6565

6666
To create a GPU node pool using Azure CLI, run the following command.
6767

@@ -73,13 +73,13 @@ az aksarc update --resource-group <Resource_Group_name> --name <Cluster_Name> --
7373

7474
1. After the node pool is provisioned, you can confirm whether the node is successfully provisioned using the node pool name.
7575

76-
### [Azure CLI](#tab/azurecli)
76+
# [Azure CLI](#tab/azurecli)
7777

7878
```azurecli
7979
kubectl get nodes --show-labels | grep "msft.microsoft/nodepool-name=.*<Node_Pool_Name>" | awk '{print $1}'
8080
```
8181

82-
### [PowerShell](#tab/powershell)
82+
# [PowerShell](#tab/powershell)
8383

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

0 commit comments

Comments
 (0)