Cephfs storage plugin
- ability to mount through kernel and fuse client - allow mount options - get MONs from ceph config if not in storage.cfg - allow the use of ceph config with fuse client - Delete secret on cephfs storage creation Signed-off-by: Alwin Antreich <a.antreich@proxmox.com>
This commit is contained in:
committed by
Thomas Lamprecht
parent
3e47917203
commit
e34ce14443
@ -28,6 +28,7 @@ use PVE::Storage::NFSPlugin;
|
||||
use PVE::Storage::CIFSPlugin;
|
||||
use PVE::Storage::ISCSIPlugin;
|
||||
use PVE::Storage::RBDPlugin;
|
||||
use PVE::Storage::CephFSPlugin;
|
||||
use PVE::Storage::SheepdogPlugin;
|
||||
use PVE::Storage::ISCSIDirectPlugin;
|
||||
use PVE::Storage::GlusterfsPlugin;
|
||||
@ -46,6 +47,7 @@ PVE::Storage::NFSPlugin->register();
|
||||
PVE::Storage::CIFSPlugin->register();
|
||||
PVE::Storage::ISCSIPlugin->register();
|
||||
PVE::Storage::RBDPlugin->register();
|
||||
PVE::Storage::CephFSPlugin->register();
|
||||
PVE::Storage::SheepdogPlugin->register();
|
||||
PVE::Storage::ISCSIDirectPlugin->register();
|
||||
PVE::Storage::GlusterfsPlugin->register();
|
||||
|
||||
Reference in New Issue
Block a user