File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ In this tutorial, you learn how to:
34
34
35
35
The following commands help you define variables and ensure your Container Apps extension is up to date.
36
36
37
- 1 . Log in to the Azure CLI.
37
+ 1 . Sign in to the Azure CLI.
38
38
39
39
# [ Bash] ( #tab/bash )
40
40
@@ -437,12 +437,12 @@ Now you can update the container app configuration to support the storage mount.
437
437
438
438
1. Open *app.yaml* in a code editor.
439
439
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 .
441
441
442
442
```yml
443
443
template:
444
444
volumes:
445
- - name: azure-file-volume
445
+ - name: my- azure-file-volume
446
446
storageName: mystoragemount
447
447
storageType: AzureFile
448
448
```
@@ -464,7 +464,7 @@ Now you can update the container app configuration to support the storage mount.
464
464
- image: nginx
465
465
name: my-container-app
466
466
volumeMounts:
467
- - volumeName: azure-file-volume
467
+ - volumeName: my- azure-file-volume
468
468
mountPath: /var/log/nginx
469
469
```
470
470
You can’t perform that action at this time.
0 commit comments