Closed ehanlon closed 6 years ago
Why you do not use Docker for Azure? It's have cloudstor plugin.
@alexsandro-xpt we're using this in an environment that is behind an ExpressRoute, and has policies that prevent us from creating resources with Public IP's.
The other issue is that my team uses Stable Channel, and according to the documentation for CloudStor it is currently only available on the Edge Channel.
Note: Cloudstor is currently only pre-installed and pre-configured in the edge channel distribution of Docker for Azure v17.03.
Alright @ehanlon, I'm using CloudStor, my only question about CloudStor is about backups. All time when we create a new cluster using Docker for Azure, it's don't request us nothing about using an exist NFS for reaprovetation.
This my question. No answer yet.
This driver is no longer supported and will not be maintained moving forward. We recommend users use CloudStor for Docker native solutions.
Thanks for your contribution, but to reduce confusion, we are closing issues, pull requests, and marking the repo as 'Archive' for the time being.
Configuration
Repro
docker-machine create -d azure
docker-machine ssh
to each VM to install the volume driversystemctl status azurefile-dockervolumedriver
shows that the service started successfully and is active.docker stack deploy -c docker-compose.yml <service_name>
on swarm manager nodedocker stack ps <service_name>
shows current state of all containers as Pendingdocker inspect <container_id>
in the service shows state as pending due to "no suitable node missing plugin"Running
docker info
on the nodes shows:Workaround
docker volume create -d azurefile -o share=<my_test_share>
Running
docker info
on the node now yields:Expected behavior
Install plugin on nodes, and Docker recognizes that the plugin is already installed without running
docker volume create -d azurefile -o share=<my_test_share>
to toggle recognition.