Skip to content

Commit a4531c2

Browse files
committed
Change the instruction from add to replace volume definition in app.yaml
1 parent 974807b commit a4531c2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/container-apps/storage-mounts-azure-files.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ In this tutorial, you learn how to:
3434

3535
The following commands help you define variables and ensure your Container Apps extension is up to date.
3636

37-
1. Log in to the Azure CLI.
37+
1. Sign in to the Azure CLI.
3838

3939
# [Bash](#tab/bash)
4040

@@ -437,12 +437,12 @@ Now you can update the container app configuration to support the storage mount.
437437
438438
1. Open *app.yaml* in a code editor.
439439
440-
1. Add a reference to the storage volumes to the `template` definition.
440+
1. Replace the `volumes: null` definition in the `template` section with the following reference to the storage volumes.
441441
442442
```yml
443443
template:
444444
volumes:
445-
- name: azure-file-volume
445+
- name: my-azure-file-volume
446446
storageName: mystoragemount
447447
storageType: AzureFile
448448
```
@@ -464,7 +464,7 @@ Now you can update the container app configuration to support the storage mount.
464464
- image: nginx
465465
name: my-container-app
466466
volumeMounts:
467-
- volumeName: azure-file-volume
467+
- volumeName: my-azure-file-volume
468468
mountPath: /var/log/nginx
469469
```
470470

0 commit comments

Comments
 (0)