Skip to content

Commit ec27844

Browse files
author
naman-msft
committed
updated docs;
1 parent 595f582 commit ec27844

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

scenarios/DeployLLMWithTorchserveOnAKS/deploy-llm-with-torchserve-on-aks.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,12 @@ Create an AKS cluster and attach the ACR.
8585

8686
```bash
8787
export AKS_CLUSTER="LLMAKSCluster$RANDOM_ID"
88+
89+
az aks create \
90+
--resource-group $RESOURCE_GROUP \
91+
--name $AKS_CLUSTER \
92+
--node-count 3 \
93+
--attach-acr $ACR_NAME
8894
```
8995

9096
This command may take several minutes to complete.

scenarios/DeployTrinoOnAKS/deploy-trino-on-aks.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ A resource group is a container that holds related resources for the Trino deplo
2626
```bash
2727
export RANDOM_SUFFIX=$(openssl rand -hex 3)
2828
export RESOURCE_GROUP_NAME="TrinoResourceGroup$RANDOM_SUFFIX"
29+
export REGION="westus2"
2930

3031
az group create --name $RESOURCE_GROUP_NAME --location $REGION
3132
```

0 commit comments

Comments
 (0)