-
Notifications
You must be signed in to change notification settings - Fork 1
Update intermediate and advanced labs #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
afelix-95
wants to merge
18
commits into
MicrosoftLearning:main
Choose a base branch
from
afelix-95:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+438
−405
Open
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
5f188db
Update 01-implement-ci-cd-with-github-actions-and-iac-with-bicep.md
afelix-95 888036b
Update 01-implement-ci-cd-with-github-actions-and-iac-with-bicep.md
afelix-95 39b9a00
Update 02-implement-microsoft-dev-box.md
afelix-95 05825a4
Update 04-configure-agent-pools-pipeline-styles.md
afelix-95 e404847
Update 05-enable-continuous-integration-azure-pipelines.md
afelix-95 aa31033
Update 06-implement-github-actions-ci-cd.md
afelix-95 c9ec525
Update 07-deploy-docker-containers-azure-app-service.md
afelix-95 4468f48
Update 08-set-up-run-functional-tests.md
afelix-95 1c9b9a7
Update 09-package-management-azure-artifacts.md
afelix-95 8244993
Update 01-enhance-workload-traffic-manager-test-azure-chaos-studio.md
afelix-95 89d95b0
Update 02-implement-self-service-infrastructure-bicep.md
afelix-95 ca50265
Update 03-configure-pipelines-code-yaml.md
afelix-95 2df851b
Update 04-control-deployments-release-gates.md
afelix-95 7c56121
Update 05-integrate-azure-key-vault-azure-devops.md
afelix-95 1c4c9ee
Update 06-enable-dynamic-configuration-feature-flags.md
afelix-95 50122de
Update 07-deployments-azure-bicep-templates.md
afelix-95 abc2f23
Update 08-monitor-application-performance-azure-load-testing.md
afelix-95 561ce4c
Update 04-configure-agent-pools-pipeline-styles.md
afelix-95 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -78,7 +78,7 @@ The exercise consists of the following tasks: | |
| cd eShopOnWeb | ||
| ``` | ||
|
|
||
| 1. Run the following commands to create the resource group and deploy the web app to East US: | ||
| 1. Run the following commands to create the resource group and deploy the web app to East US, replacing `XXXX` with any combination of letters and numbers, as the webAppName must be globally unique: | ||
|
|
||
| ```bash | ||
| # Create resource group for East US | ||
|
|
@@ -88,16 +88,16 @@ The exercise consists of the following tasks: | |
| az deployment group create \ | ||
| --resource-group rg-eshoponweb-eastus \ | ||
| --template-file infra/webapp.bicep \ | ||
| --parameters webAppName=eshoponweb-eastus-$(uuidgen)-$(date +%s) \ | ||
| sku=F1 \ | ||
| linuxFxVersion="DOTNETCORE|8.0" | ||
| --parameters webAppName=eshoponweb-eastus-XXXX sku=S1 | ||
| ``` | ||
|
|
||
| 1. Wait for the deployment to complete. This might take a few minutes. | ||
|
|
||
| >**Note**: If you receive an `The content for this response was already consumed` error, you might not have sufficient quota in the specified location, so you need to create the resources in a different region. | ||
|
|
||
| ### Deploy the web app to West US | ||
|
|
||
| 1. Run the following commands to deploy the web app to West US: | ||
| 1. Run the following commands to deploy the web app to West US, replacing `XXXX` with any combination of letters and numbers, as the webAppName must be globally unique: | ||
|
|
||
| ```bash | ||
| # Create resource group for West US | ||
|
|
@@ -107,9 +107,7 @@ The exercise consists of the following tasks: | |
| az deployment group create \ | ||
| --resource-group rg-eshoponweb-westus \ | ||
| --template-file infra/webapp.bicep \ | ||
| --parameters webAppName=eshoponweb-westus-$(date +%s%N) \ | ||
| sku=F1 \ | ||
| linuxFxVersion="DOTNETCORE|8.0" | ||
| --parameters webAppName=eshoponweb-westus-XXXX sku=S1 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as the above comment, you can keep the random webAppName=eshoponweb-eastus-$(uuidgen)-$(date +%s) |
||
| ``` | ||
|
|
||
| 1. Wait for the deployment to complete. This might take a few minutes. | ||
|
|
@@ -248,7 +246,7 @@ The exercise consists of the following tasks: | |
| 1. On the **Basics** tab of the **Create an experiment** page, perform the following actions: | ||
|
|
||
| - Verify that your Azure subscription appears in the **Subscription** drop-down list. | ||
| - Select the **Create new** link below the **Resource Group** drop-down list, in the **Name** text box, enter **`rg-devops-foundations`**, and then select **OK**. | ||
| - Select **`rg-devops-foundations`** in the **Resource Group** drop-down list. | ||
| - In the **Experiment details** section, in the **Name** text box, enter **`DevOps_Foundations_Labs_Experiment_01`**. | ||
| - In the **Region** drop-down list, select the **West US** Azure region. | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@afelix-95 here we can leave the automated way of generating the name:
--parameters webAppName=eshoponweb-eastus-$(uuidgen)-$(date +%s)
, and update only the SKU to S1 as you suggested. No needed for the XXXX add in the description and resource name.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed it because when running the command in cloud shell, it returns an error message that the name is not valid due to the final web app name having more than 24 characters.