Skip to content

Commit 7ff1bee

Browse files
authored
Merge pull request #214049 from craigshoemaker/aca/sofias-feedback
[Container Apps] Update based on PM review
2 parents e9155ba + 8499af0 commit 7ff1bee

7 files changed

+37
-42
lines changed

articles/container-apps/TOC.yml

Lines changed: 23 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -9,32 +9,29 @@
99
- name: Quickstarts
1010
expanded: true
1111
items:
12-
- name: Deploy your first container app
13-
expanded: true
14-
items:
15-
- name: With a sample container image
16-
expanded: true
17-
items:
18-
- name: Azure portal
19-
href: quickstart-portal.md
20-
- name: Command line
21-
href: get-started.md
22-
- name: With an existing container image
23-
expanded: true
24-
items:
25-
- name: Azure portal
26-
href: get-started-existing-container-image-portal.md
27-
- name: Command line
28-
href: get-started-existing-container-image.md
29-
- name: With code on your local machine
30-
expanded: true
31-
items:
32-
- name: Command line
33-
href: quickstart-code-to-cloud.md
34-
- name: Visual Studio
35-
href: deploy-visual-studio.md
36-
- name: Visual Studio Code
37-
href: deploy-visual-studio-code.md
12+
- name: With a sample container image
13+
expanded: true
14+
items:
15+
- name: Azure portal
16+
href: quickstart-portal.md
17+
- name: Command line
18+
href: get-started.md
19+
- name: With an existing container image
20+
expanded: true
21+
items:
22+
- name: Azure portal
23+
href: get-started-existing-container-image-portal.md
24+
- name: Command line
25+
href: get-started-existing-container-image.md
26+
- name: With code on your local machine
27+
expanded: true
28+
items:
29+
- name: Command line
30+
href: quickstart-code-to-cloud.md
31+
- name: Visual Studio
32+
href: deploy-visual-studio.md
33+
- name: Visual Studio Code
34+
href: deploy-visual-studio-code.md
3835
- name: Concepts
3936
items:
4037
- name: Environment

articles/container-apps/get-started-existing-container-image-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,4 +155,4 @@ If you're not going to continue to use this application, you can delete the Azur
155155
## Next steps
156156
157157
> [!div class="nextstepaction"]
158-
> [Environments in Azure Container Apps](environment.md)
158+
> [Communication between microservices](communicate-between-microservices.md)

articles/container-apps/get-started-existing-container-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,4 +252,4 @@ Remove-AzResourceGroup -Name $ResourceGroupName -Force
252252
## Next steps
253253

254254
> [!div class="nextstepaction"]
255-
> [Environments in Azure Container Apps](environment.md)
255+
> [Communication between microservices](communicate-between-microservices.md)

articles/container-apps/get-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,4 +172,4 @@ Remove-AzResourceGroup -Name $ResourceGroupName -Force
172172
## Next steps
173173

174174
> [!div class="nextstepaction"]
175-
> [Environments in Azure Container Apps](environment.md)
175+
> [Communication between microservices](communicate-between-microservices.md)

articles/container-apps/microservices-dapr.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,14 @@ ms.devlang: azurecli
1818
You learn how to:
1919

2020
> [!div class="checklist"]
21-
> - Create a Container Apps environment to host your container apps
22-
> - Create an Azure Blob Storage account
23-
> - Create a Dapr state store component for the Azure Blob storage
24-
> - Deploy two container apps: one that produces messages, and one that consumes messages and persists them in the state store
25-
> - Verify the solution is up and running
21+
> * Create a Container Apps environment for your container apps
22+
> * Create an Azure Blob Storage state store for the container app
23+
> * Deploy two apps that produce and consume messages and persist them in the state store
24+
> * Verify the interaction between the two microservices.
2625
27-
In this tutorial, you deploy the Dapr [Hello World](https://github.com/dapr/quickstarts/tree/master/tutorials/hello-world) quickstart.
26+
With Azure Container Apps, you get a [fully managed version of the Dapr APIs](./dapr-overview.md) when building microservices. When you use Dapr in Azure Container Apps, you can enable sidecars to run next to your microservices that provide a rich set of capabilities. Available Dapr APIs include [Service to Service calls](https://docs.dapr.io/developing-applications/building-blocks/service-invocation/), [Pub/Sub](https://docs.dapr.io/developing-applications/building-blocks/pubsub/), [Event Bindings](https://docs.dapr.io/developing-applications/building-blocks/bindings/), [State Stores](https://docs.dapr.io/developing-applications/building-blocks/state-management/), and [Actors](https://docs.dapr.io/developing-applications/building-blocks/actors/).
27+
28+
In this tutorial, you deploy the same applications from the Dapr [Hello World](https://github.com/dapr/quickstarts/tree/master/tutorials/hello-kubernetes) quickstart.
2829

2930
The application consists of:
3031

@@ -219,7 +220,7 @@ There are multiple ways to authenticate to external resources via Dapr. This exa
219220

220221
# [Bash](#tab/bash)
221222

222-
Create a config file named **statestore.yaml** with the properties that you sourced from the previous steps. This file helps enable your Dapr app to access your state store. Since the application is authenticating directly via Managed Identity, there's no need to include the storage account key directly within the component. The following example shows how your **statestore.yaml** file should look when configured for your Azure Blob Storage account:
223+
Open a text editor and create a config file named *statestore.yaml* with the properties that you sourced from the previous steps. This file helps enable your Dapr app to access your state store. The following example shows how your *statestore.yaml* file should look when configured for your Azure Blob Storage account:
223224

224225
```yaml
225226
# statestore.yaml for Azure Blob storage component

articles/container-apps/quickstart-portal.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ An Azure account with an active subscription is required. If you don't already h
2222

2323
## Setup
2424

25-
> [!NOTE]
26-
> An Azure Container Apps environment can be deployed as a zone redundant resource in regions where support is available. This is a deployment-time only configuration option.
27-
2825
<!-- Create -->
2926
[!INCLUDE [container-apps-create-portal-steps.md](../../includes/container-apps-create-portal-steps.md)]
3027

@@ -55,4 +52,4 @@ If you're not going to continue to use this application, you can delete the Azur
5552
## Next steps
5653

5754
> [!div class="nextstepaction"]
58-
> [Environments in Azure Container Apps](environment.md)
55+
> [Communication between microservices](communicate-between-microservices.md)

includes/container-apps-create-portal-steps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Next, create an environment for your container app.
3636

3737
| Setting | Value |
3838
|--|--|
39-
| Region | Select **Canada Central**. |
39+
| Region | Select **Central US**. |
4040

4141
1. In the *Create Container Apps environment* field, select the **Create new** link.
4242
1. In the *Create Container Apps Environment* page on the *Basics* tab, enter the following values:
@@ -53,6 +53,6 @@ Next, create an environment for your container app.
5353
|--|--|
5454
| Name | Enter **my-container-apps-logs**. |
5555

56-
The *Location* field is pre-filled with *Canada Central* for you.
56+
The *Location* field is pre-filled with *Central US* for you.
5757

5858
1. Select **OK**.

0 commit comments

Comments
 (0)