I have a on-prem network file share //server_name/share
which I can map as network drive by providing credentials.
This path I am currently link with Azure VM's path /mnt/share
and in this VM I am running docker container applications and further it will be mounted to container.
- /mnt/share:/app/mnt
And finally my container application reading whatever available at //server_name/share
.
Now I moved to Azure Kubernetes Service
and here I am NOT able map path with my on-prem share //server_name/share
.
What are the workaround for this issue? Azure File Sync
I saw but this solution I don't want.
How to mount the share to the POD container?