Skip to content

Commit 884a5a3

Browse files
committed
Add edits
1 parent 1014bfe commit 884a5a3

1 file changed

Lines changed: 10 additions & 15 deletions

File tree

articles/container-apps/microservices-dapr.md

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: greenie-msft
66
ms.service: azure-container-apps
77
ms.subservice: dapr
88
ms.topic: quickstart
9-
ms.date: 01/29/2026
9+
ms.date: 02/10/2026
1010
ms.author: nigreenf
1111
ms.reviewer: hannahhunter
1212
ms.custom: devx-track-azurecli, devx-track-azurepowershell
@@ -15,7 +15,7 @@ ms.devlang: azurecli
1515

1616
# Quickstart: Deploy a Dapr application to Azure Container Apps by using the Azure CLI
1717

18-
[Dapr](./dapr-overview.md) (Distributed Application Runtime) helps developers build resilient, reliable microservices. In this quickstart, you learn how to enable Dapr sidecars to run alongside your microservices container apps. You'll:
18+
[Distributed Application Runtime (Dapr)](./dapr-overview.md) helps developers build resilient, reliable microservices. In this quickstart, you learn how to enable Dapr sidecars to run alongside your microservices container apps. You'll:
1919

2020
> [!div class="checklist"]
2121
> * Create a Container Apps environment and Azure Blog Storage state store for your container apps.
@@ -29,8 +29,8 @@ This quickstart mirrors the applications you deploy in the open-source Dapr [Hel
2929

3030
## Prerequisites
3131

32-
- An Azure account with an active subscription. If you don't already have one, you can [create an account for free](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn).
33-
- A GitHub account. If you don't already have one, sign up for [free](https://github.com/join).
32+
- An Azure account with an active subscription. If you don't have one, [create an account for free](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn).
33+
- A GitHub account. If you don't have one, [sign up for free](https://github.com/join).
3434
- Install [Azure CLI](/cli/azure/install-azure-cli).
3535
- Install [Git](https://git-scm.com/downloads).
3636

@@ -113,7 +113,6 @@ While Container Apps supports both user-assigned and system-assigned managed ide
113113
Install-Module -Name AZ.ManagedServiceIdentity
114114
115115
New-AzUserAssignedIdentity -ResourceGroupName $ResourceGroupName -Name 'nodeAppIdentity' -Location $Location
116-
117116
```
118117
119118
---
@@ -195,7 +194,7 @@ While you have multiple options for authenticating to external resources via Dap
195194
- nodeapp
196195
```
197196
198-
This file helps enable your Dapr app to access your state store.
197+
This file helps enable your Dapr app to access your state store.
199198
200199
1. Navigate to the directory in which you stored the yaml file and run the following command to configure the Dapr component in the Container Apps environment.
201200
@@ -211,7 +210,6 @@ While you have multiple options for authenticating to external resources via Dap
211210
# [PowerShell](#tab/powershell)
212211
213212
```azurepowershell
214-
215213
$AcctName = New-AzContainerAppDaprMetadataObject -Name "accountName" -Value $StorageAcctName
216214
217215
$ContainerName = New-AzContainerAppDaprMetadataObject -Name "containerName" -Value 'mycontainer'
@@ -252,7 +250,7 @@ az containerapp create \
252250
--env-vars 'APP_PORT=3000'
253251
```
254252

255-
If you're using an Azure Container Registry, include the `--registry-server <REGISTRY_NAME>.azurecr.io` flag in the command.
253+
If you're using an Azure Container Registry, include the `--registry-server <registry-name>.azurecr.io` flag in the command.
256254

257255
# [PowerShell](#tab/powershell)
258256

@@ -289,7 +287,7 @@ $ServiceArgs = @{
289287
New-AzContainerApp @ServiceArgs
290288
```
291289

292-
If you're using an Azure Container Registry, include the `RegistryServer = '<REGISTRY_NAME>.azurecr.io'` flag in the command.
290+
If you're using an Azure Container Registry, include the `RegistryServer = '<registry-name>.azurecr.io'` flag in the command.
293291

294292
---
295293

@@ -311,12 +309,11 @@ az containerapp create \
311309
--dapr-app-id pythonapp
312310
```
313311

314-
If you're using an Azure Container Registry, include the `--registry-server <REGISTRY_NAME>.azurecr.io` flag in the command.
312+
If you're using an Azure Container Registry, include the `--registry-server <registry-name>.azurecr.io` flag in the command.
315313

316314
# [PowerShell](#tab/powershell)
317315

318316
```azurepowershell
319-
320317
$TemplateArgs = @{
321318
Name = 'pythonapp'
322319
Image = 'dapriosamples/hello-k8s-python:latest'
@@ -339,7 +336,7 @@ $ClientArgs = @{
339336
New-AzContainerApp @ClientArgs
340337
```
341338

342-
If you're using an Azure Container Registry, include the `RegistryServer = '<REGISTRY_NAME>.azurecr.io'` flag in the command.
339+
If you're using an Azure Container Registry, include the `RegistryServer = '<registry-name>.azurecr.io'` flag in the command.
343340

344341
---
345342

@@ -351,7 +348,7 @@ You can confirm that the services are working correctly by viewing data in your
351348

352349
1. Open the [Azure portal](https://portal.azure.com) in your browser and navigate to your storage account.
353350

354-
1. Select **Data Storage** > **Containers** in the left side menu.
351+
1. Select **Data Storage** > **Containers** in the sidebar menu.
355352

356353
1. Select the container app.
357354

@@ -383,11 +380,9 @@ az monitor log-analytics query \
383380
# [PowerShell](#tab/powershell)
384381

385382
```azurepowershell
386-
387383
$queryResults = Invoke-AzOperationalInsightsQuery -WorkspaceId $WorkspaceId -Query "ContainerAppConsoleLogs_CL | where ContainerAppName_s == 'nodeapp' and (Log_s contains 'persisted' or Log_s contains 'order') | project ContainerAppName_s, Log_s, TimeGenerated | take 5 "
388384
389385
$queryResults.Results
390-
391386
```
392387

393388
---

0 commit comments

Comments
 (0)