Skip to content
This repository was archived by the owner on Nov 14, 2025. It is now read-only.

Conversation

@cdanvergara
Copy link
Contributor

Removing the comments '' on some commands, that is causing trouble while using the typing feature on the LODS lab environment.

Module: 10

Lab/Demo: Lab: Controlling Deployments using Release Gates

Fixes # .
Extra comments on the instructions need to be cleared out before actually running the commands on Azure CLI.

Changes proposed in this pull request:

  • Removed the extra comments on the commands

Removing the comments '' on some commands, that is causing trouble while using the typing feature on the LODS lab environment.
@polichtm
Copy link
Contributor

Hi Cristian,
would you mind clarifying what specific issue you are referring to?
Doesn't the original formatting match the one used on all AZ labs?
rgds
Marcin

@mkennten
Copy link
Contributor

Please reject this PR, as it is an issue with Markdown in this particular lab. It's not about the backticks for the bash commands it's because of an issue that is introduced above. All other labs and even within this lab are displayed correctly.

image

Unai will provide a fix for the Markdown issue.

@unaihuete93
Copy link
Contributor

the attached way it would work Try preview in comment, the ``` are needed for easy copy/pasting if I am not wrong:

  1. From the Bash prompt, in the Cloud Shell pane, run the following command to create a resource group (replace the <region> placeholder with the name of the Azure region that will host the two Azure web apps, for example 'westeurope' or 'eastus'):

    RESOURCEGROUPNAME='az400m10l01-RG'
    az group create -n $RESOURCEGROUPNAME -l '<region>'

    Note: possible locations can be found by running the following command, use the Name on <region> : az account list-locations -o table

  2. To create an App service plan

    SERVICEPLANNAME='az400m01l01-sp1'
    az appservice plan create -g $RESOURCEGROUPNAME -n $SERVICEPLANNAME --sku S1
  3. Create two web apps with unique app names.

    SUFFIX=$RANDOM$RANDOM
    az webapp create -g $RESOURCEGROUPNAME -p $SERVICEPLANNAME -n PU$SUFFIX-Canary
    az webapp create -g $RESOURCEGROUPNAME -p $SERVICEPLANNAME -n PU$SUFFIX-Prod

@mkennten
Copy link
Contributor

I'm closing this because I did not get a response from the requestor and fixed the issue in PR #30

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants