Skip to content

Commit 3f95de3

Browse files
author
naman-msft
committed
updated docs;
1 parent 03c2621 commit 3f95de3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

scenarios/DeployCassandraOnAKS/deploy-cassandra-on-aks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In this tutorial, you'll deploy an open-source Apache Cassandra cluster on Azure
2424
Create an AKS cluster with a specified resource group.
2525

2626
```bash
27-
export RANDOM_SUFFIX="openssl rand -hex 3"
27+
export RANDOM_SUFFIX="$(openssl rand -hex 3)"
2828
export REGION="westus2"
2929
export MY_RESOURCE_GROUP_NAME="MyAKSResourceGroup$RANDOM_SUFFIX"
3030

scenarios/DeployClickhouseOnAKS/deploy-clickhouse-on-aks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Ensure that you have the following:
2828
Create a new Azure resource group to contain all resources related to the deployment.
2929

3030
```bash
31-
export RANDOM_SUFFIX=$(openssl rand -hex 3)
31+
export RANDOM_SUFFIX="$(openssl rand -hex 3)"
3232
export REGION="westus2"
3333
export MY_RESOURCE_GROUP="MyAKSResourceGroup$RANDOM_SUFFIX"
3434
az group create --name $MY_RESOURCE_GROUP --location $REGION

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ In this quickstart, you will learn how to deploy a large language model (LLM) us
2525
Create a resource group with the `az group create` command.
2626

2727
```bash
28-
export RANDOM_ID=1f659d
28+
export RANDOM_ID="$(openssl rand -hex 3)"
2929
export RESOURCE_GROUP="LLMResourceGroup$RANDOM_ID"
3030
export LOCATION="westus2"
3131
az group create --name $RESOURCE_GROUP --location $LOCATION

0 commit comments

Comments
 (0)