Skip to content

Commit 37d63d9

Browse files
committed
Add Cary's review suggestions.
1 parent b3bf71a commit 37d63d9

File tree

3 files changed

+26
-17
lines changed

3 files changed

+26
-17
lines changed

articles/container-apps/TOC.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
- name: Quickstarts
1010
expanded: true
1111
items:
12-
- name: With a sample container image
12+
- name: Deploy from an existing container image
1313
expanded: true
1414
items:
1515
- name: Azure portal
@@ -139,14 +139,14 @@
139139
- name: Tutorials
140140
expanded: true
141141
items:
142-
- name: Deploy from an existing container image - CLI
142+
- name: Create and deploy a container app using the CLI
143143
href: tutorial-deploy-first-app-cli.md
144-
- name: Build a multiple service app
144+
- name: Build a multiple app scenario
145145
expanded: true
146146
items:
147147
- name: 1. Deploy a backend microservice app
148148
href: tutorial-code-to-cloud.md
149-
- name: 1. Deploy a frontend microservice app
149+
- name: 2. Deploy a frontend microservice app
150150
href: communicate-between-microservices.md
151151
- name: Deploy microservices with Dapr
152152
expanded: true

articles/container-apps/get-started.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,21 @@ Create and deploy your first container app with the `containerapp up` command. T
3535
- Create the Log Analytics workspace
3636
- Create and deploy the container app using a public container image
3737

38+
Note that if any of these resources already exist, the command will use them instead of creating new ones.
39+
40+
```azurecli
41+
3842
# [Bash](#tab/bash)
3943
4044
```azurecli
4145
az containerapp up \
4246
--name my-container-app \
43-
--resource-group 'my-container-apps' \
44-
--location 'centralus' \
47+
--resource-group my-container-apps \
48+
--location centralus \
4549
--environment 'my-container-apps' \
4650
--image mcr.microsoft.com/azuredocs/containerapps-helloworld:latest \
4751
--target-port 80 \
48-
--ingress 'external' \
52+
--ingress external \
4953
--query properties.configuration.ingress.fqdn
5054
```
5155

@@ -54,12 +58,12 @@ az containerapp up \
5458
```powershell
5559
az containerapp up `
5660
--name my-container-app `
57-
--resource-group 'my-container-apps' `
58-
--location 'centralus'`
59-
--environment 'my-container-apps' `
61+
--resource-group my-container-apps `
62+
--location centralus `
63+
--environment my-container-apps `
6064
--image mcr.microsoft.com/azuredocs/containerapps-helloworld:latest `
6165
--target-port 80 `
62-
--ingress 'external' `
66+
--ingress external `
6367
--query properties.configuration.ingress.fqdn
6468
```
6569

articles/container-apps/tutorial-deploy-first-app-cli.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,26 @@
11
---
2-
title: 'Quickstart: Deploy your first container app'
2+
title: 'Tutorial: Deploy your first container app'
33
description: Deploy your first application to Azure Container Apps.
44
services: container-apps
55
author: craigshoemaker
66
ms.service: container-apps
7-
ms.topic: quickstart
7+
ms.topic: tutorial
88
ms.date: 03/21/2022
99
ms.author: cshoe
1010
ms.custom: ignite-fall-2021, mode-api, devx-track-azurecli, event-tier1-build-2022
1111
ms.devlang: azurecli
1212
---
1313

14-
# Quickstart: Deploy your first container app
14+
# Tutorial: Deploy your first container app
1515

1616
The Azure Container Apps service enables you to run microservices and containerized applications on a serverless platform. With Container Apps, you enjoy the benefits of running containers while you leave behind the concerns of manually configuring cloud infrastructure and complex container orchestrators.
1717

18-
In this quickstart, you create a secure Container Apps environment and deploy your first container app.
18+
In this tutorial, you create a secure Container Apps environment and deploy your first container app.
19+
20+
> [!NOTE]
21+
> You can also deploy this app using the [az containerapp up](/cli/azure/containerapp#az_containerapp_up) by following the instructions in the [Quickstart: Deploy your first container app with containerapp up
22+
](get-started.md) article. The `az containerapp up` command is a fast and convenient way to build and deploy your app to Azure Container Apps using a single command. However, it doesn't provide the same level of customization for your container app.
23+
1924

2025
## Prerequisites
2126

@@ -147,10 +152,10 @@ Copy this location to a web browser.
147152

148153
## Clean up resources
149154

150-
If you're not going to continue to use this application, run the following command to delete the resource group along with all the resources created in this quickstart.
155+
If you're not going to continue to use this application, run the following command to delete the resource group along with all the resources created in this tutorial.
151156

152157
>[!CAUTION]
153-
> The following command deletes the specified resource group and all resources contained within it. If resources outside the scope of this quickstart exist in the specified resource group, they will also be deleted.
158+
> The following command deletes the specified resource group and all resources contained within it. If resources outside the scope of this tutorial exist in the specified resource group, they will also be deleted.
154159
155160
# [Bash](#tab/bash)
156161

0 commit comments

Comments
 (0)