trajano / docker-volume-plugins

Managed docker volume plugins
Eclipse Public License 2.0
143 stars 60 forks source link

Question: Which latest version of glusterfs plugin is work? #27

Closed minzak closed 4 years ago

minzak commented 4 years ago
glusterfs -V
glusterfs 7.1
Repository revision: git://git.gluster.org/glusterfs.git
Copyright (c) 2006-2016 Red Hat, Inc. <https://www.gluster.org/>
GlusterFS comes with ABSOLUTELY NO WARRANTY.
It is licensed to you under your choice of the GNU Lesser
General Public License, version 3 or any later version (LGPLv3
or later), or the GNU General Public License, version 2 (GPLv2),
in all cases as published by the Free Software Foundation.

What is the latest version of glusterfs must be for fully work this plugin?

#    volumes:
#      - type: bind
#        source: /mnt/glusterfs/vote/mysql
#        target: /var/lib/mysql
    volumes:
      - votedata:/var/lib/mysql

volumes:
  votedata:
    driver: glusterfs
    name: "gfs/votedata"

I just add volume plugin, and service always fail (

aarongoodrich3 commented 4 years ago

The newest version uses gluster 5.9, and the "latest" is 2 years old, so it probably uses gluster 3. You might consider matching the version in the plugin, as gluster doesn't really guarantee backwards compatibility as far as I've read.

minzak commented 4 years ago

Thanks.