Skip to content

Commit c76427c

Browse files
Merge pull request #261630 from ju-shim/custom-conf
File name is case sensitive - add note to Apps Tutorial
2 parents 8eb288b + 5e69483 commit c76427c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

articles/virtual-machine-scale-sets/tutorial-install-apps-cli.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: jushiman
66
ms.topic: tutorial
77
ms.service: virtual-machine-scale-sets
88
ms.subservice: extensions
9-
ms.date: 11/22/2022
9+
ms.date: 12/19/2023
1010
ms.reviewer: mimckitt
1111
ms.custom: mimckitt, devx-track-azurecli
1212

@@ -47,11 +47,10 @@ In your current shell, create a file named *customConfig.json* and paste the fol
4747
> [!NOTE]
4848
> You may need to invert the use of the single (') and double quotes (") within the JSON block if you decide to reference the JSON directly (instead of referencing the *customConfig.json* file) in the *--settings* parameter below.
4949
50-
5150
## Create a scale set
5251

5352
> [!IMPORTANT]
54-
>Starting November 2023, VM scale sets created using PowerShell and Azure CLI will default to Flexible Orchestration Mode if no orchestration mode is specified. For more information about this change and what actions you should take, go to [Breaking Change for VMSS PowerShell/CLI Customers - Microsoft Community Hub](https://techcommunity.microsoft.com/t5/azure-compute-blog/breaking-change-for-vmss-powershell-cli-customers/ba-p/3818295)
53+
> Starting November 2023, VM scale sets created using PowerShell and Azure CLI will default to Flexible Orchestration Mode if no orchestration mode is specified. For more information about this change and what actions you should take, go to [Breaking Change for VMSS PowerShell/CLI Customers - Microsoft Community Hub](https://techcommunity.microsoft.com/t5/azure-compute-blog/breaking-change-for-vmss-powershell-cli-customers/ba-p/3818295)
5554
5655
Create a resource group with [az group create](/cli/azure/group). The following example creates a resource group named *myResourceGroup* in the *eastus* location:
5756

@@ -87,6 +86,9 @@ az vmss extension set \
8786

8887
Each VM instance in the scale set downloads and runs the script from GitHub. In a more complex example, multiple application components and files could be installed. If the scale set is scaled up, the new VM instances automatically apply the same Custom Script Extension definition and install the required application.
8988

89+
> [!CAUTION]
90+
> File names are case sensitive. Use the exact file name stated in these instructions to avoid failure.
91+
9092
## Test your scale set
9193
To allow traffic to reach the web server, create a load balancer rule with [az network lb rule create](/cli/azure/network/lb/rule). The following example creates a rule named *myLoadBalancerRuleWeb*:
9294

0 commit comments

Comments
 (0)