Is it possible to mount a subdirectory of a fileshare?
I supposed the command would look like this:
az container create \
--resource-group $ACI_PERS_RESOURCE_GROUP \
--name hellofiles \
--image microsoft/aci-hellofiles \
--dns-name-label aci-demo \
--ports 80 \
--azure-file-volume-account-name $ACI_PERS_STORAGE_ACCOUNT_NAME \
--azure-file-volume-account-key $STORAGE_KEY \
--azure-file-volume-share-name $ACI_PERS_SHARE_NAME/some_sub_directory \
--azure-file-volume-mount-path /aci/logs/
⚠Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
The answer is that it is not.
@nathanjsweet thanks for following up. If you have any other questions just let us know.
Will you add this feature ?
For anybody looking into this in the future, it is possible to do this: https://stackoverflow.com/questions/53599796/mount-azure-files-folder-into-kubernetes
@NickMSW that is only possible in AKS, not ACI (completely different systems).
Most helpful comment
Will you add this feature ?