Skip to content

Commit d53ad54

Browse files
committed
Updates.
1 parent 8f8bc16 commit d53ad54

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/container-apps/storage-mounts.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -671,10 +671,10 @@ When mounting a file share from Azure Files, in addition to the mount path, you
671671
- The mount path is the path in the container where you want to mount the volume.
672672
- The sub path is the path in the volume you want to mount.
673673
- The sub path is optional. If not specified, the volume root is mounted.
674-
- The sub path should be a relative path from the volume root. The sub path should not start with `/`. Specifying a sub path that starts with `/` might prevent your container app from starting up.
674+
- The sub path should be a relative path from the volume root. The sub path should not start with `/`. Specifying a sub path that starts with `/` might prevent your container app from starting up. For example, `my-volume-folder` is a valid sub path, whereas `/my-volume-folder` is not.
675675
- The sub path can refer to either a folder or a file in the volume.
676-
- If the sub path refers to a folder in the volume, the mount path should refer to an empty folder in the container.
677-
- If the sub path refers to a file in the volume, the mount path should refer to a file that does not exist in the container. For example, if the sub path is `my-volume-folder/my-volume-file`, and the mount path is `/my-container-folder/my-container-file`, the folder `/my-container-folder` should exist in the container, but should not already contain the file `my-container-file`.
678-
- If the sub path contains a trailing `/`, whether it refers to a folder or file, the trailing `/` is ignored.
676+
- If the sub path refers to a folder, the mount path should refer to an empty folder in the container.
677+
- If the sub path refers to a file, the mount path should refer to a file that does not already exist in the container. For example, if the sub path is `my-volume-folder/my-volume-file` and the mount path is `/my-container-folder/my-container-file`, the folder `/my-container-folder` should exist in the container, but should not already contain the file `my-container-file`.
678+
- If the sub path has a trailing `/`, whether it refers to a folder or file, the trailing `/` is ignored.
679679
680680
For more information see [using subPath](https://kubernetes.io/docs/concepts/storage/volumes/#using-subpath).

0 commit comments

Comments
 (0)