Skip to content

Commit 252ac0c

Browse files
committed
Fixes
1 parent 2e9422b commit 252ac0c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

AKS-Arc/deploy-ai-model.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ az aksarc update --resource-group <Resource_Group_name> --name <Cluster_Name> --
6969
az aksarc nodepool add --resource-group <Resource_Group_name> --cluster-name <Cluster_Name> --name <Node_Pool_Name> --node-vm-size <GPU_VM_SKU> --node-count 1
7070
```
7171

72+
---
73+
7274
1. After the node pool is provisioned, you can confirm whether the node is successfully provisioned using the node pool name.
7375

7476
### [Azure CLI](#tab/azurecli)
@@ -83,6 +85,8 @@ az aksarc update --resource-group <Resource_Group_name> --name <Cluster_Name> --
8385
kubectl get nodes --show-labels | Select-String "msft.microsoft/nodepool-name=.*<Node_Pool_Name>" | ForEach-Object { ($_ -split '\s+')[0] }
8486
```
8587

88+
---
89+
8690
1. 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`.
8791

8892
```azurecli
@@ -155,7 +159,7 @@ az aksarc update --resource-group <Resource_Group_name> --name <Cluster_Name> --
155159

156160
The following table shows the supported GPU models and their corresponding VM SKUs. The GPU model is used to determine the VM SKU when you create a node pool. For more information about the GPU models, see [Supported GPU models](scale-requirements.md#supported-gpu-models).
157161

158-
| | T4 | A2 or A16 | A2 or A16 |
162+
| Type | T4 | A2 or A16 | A2 or A16 |
159163
|-------------------------------------|---------------------|-----------------------------------|-------------------------------------|
160164
| Model VM SKU Matrix | Standard_NK6 | Standard_NC4, Standard_NC8 | Standard_NC32, Standard_NC16 |
161165
| phi-2 | Y | Y | Y |

0 commit comments

Comments
 (0)