You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/container-apps/storage-mounts.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -501,7 +501,7 @@ The following ARM template snippets demonstrate how to add an Azure Files share
501
501
"volumes": [
502
502
{
503
503
"name": "azure-files-volume",
504
-
"storageType": "azureFile",
504
+
"storageType": "AzureFile",
505
505
"storageName": "myazurefiles"
506
506
}
507
507
]
@@ -547,7 +547,7 @@ The following ARM template snippets demonstrate how to add an Azure Files share
547
547
"volumes": [
548
548
{
549
549
"name": "azure-files-volume",
550
-
"storageType": "nfsAzureFile",
550
+
"storageType": "NfsAzureFile",
551
551
"storageName": "myazurefiles"
552
552
}
553
553
]
@@ -560,7 +560,7 @@ The following ARM template snippets demonstrate how to add an Azure Files share
560
560
561
561
- Add a `volumes` array to the `template` section of your container app definition and define a volume. If you already have a `volumes` array, add a new volume to the array.
562
562
- The `name` is an identifier for the volume.
563
-
- For `storageType`, use `azureFile` for SMB, or `nfsAzureFile` for NFS. This value must match the storage type you defined in the environment.
563
+
- For `storageType`, use `AzureFile` for SMB, or `NfsAzureFile` for NFS. This value must match the storage type you defined in the environment.
564
564
- For `storageName`, use the name of the storage you defined in the environment.
565
565
- For each container in the template that you want to mount Azure Files storage, define a volume mount in the `volumeMounts` array of the container definition.
566
566
- The `volumeName` is the name defined in the `volumes` array.
@@ -615,7 +615,7 @@ To configure a volume mount for Azure Files storage in the Azure portal, add a f
615
615
616
616
# [NFS](#tab/nfs)
617
617
618
-
Azure portal doesn't support creating NFS Azure Files volumes. To create an NFS Azure Files volume, use the Azure CLI or ARM template.
618
+
Azure portal doesn't support creating NFS Azure Files volumes. To create an NFS Azure Files volume, use the [Azure CLI](storage-mounts.md?tabs=nfs&pivots=azure-cli#azure-files) or [ARM template](storage-mounts.md?tabs=nfs&pivots=azure-resource-manager#azure-files).
0 commit comments