add Glusterfs Plugin

storage.cfg
------------
glusterfs: glusterstore
       path /mnt/pve/gluster
       server server.fqdn  (optional, default is localhost)
       volume glustervolume
       content images
       maxfiles 1

Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
This commit is contained in:
Alexandre Derumier
2013-08-12 09:59:00 +02:00
committed by Dietmar Maurer
parent 5e9752d0cb
commit f4648aef06
5 changed files with 219 additions and 3 deletions

View File

@ -25,6 +25,7 @@ use PVE::Storage::RBDPlugin;
use PVE::Storage::SheepdogPlugin;
use PVE::Storage::ISCSIDirectPlugin;
use PVE::Storage::NexentaPlugin;
use PVE::Storage::GlusterfsPlugin;
# load and initialize all plugins
PVE::Storage::DirPlugin->register();
@ -35,6 +36,7 @@ PVE::Storage::RBDPlugin->register();
PVE::Storage::SheepdogPlugin->register();
PVE::Storage::ISCSIDirectPlugin->register();
PVE::Storage::NexentaPlugin->register();
PVE::Storage::GlusterfsPlugin->register();
PVE::Storage::Plugin->init();
my $UDEVADM = '/sbin/udevadm';