The default cephfs_enable_snapshots set to False

The snapshot support of the driver is disabled by default.
Reference:
https://github.com/openstack/manila/blob/master/manila/share/drivers/cephfs/driver.py#L60

TrivialFix

Change-Id: I462a7567851ed3e40ff075762cd9c75d69b4ad69
This commit is contained in:
caowei 2017-10-27 18:08:55 +08:00
parent c22c073734
commit c82c04124f
2 changed files with 4 additions and 4 deletions

View File

@ -213,7 +213,7 @@ Create a section like this to define a CephFS native backend:
cephfs_protocol_helper_type = CEPHFS
cephfs_auth_id = manila
cephfs_cluster_name = ceph
cephfs_enable_snapshots = false
cephfs_enable_snapshots = False
Set ``driver-handles-share-servers`` to ``False`` as the driver does not
manage the lifecycle of ``share-servers``. To let the driver perform snapshot

View File

@ -159,10 +159,10 @@ Configure CephFS back end in ``manila.conf``
cephfs_conf_path = /etc/ceph/ceph.conf
cephfs_auth_id = manila
cephfs_cluster_name = ceph
cephfs_enable_snapshots = True
cephfs_enable_snapshots = False
Set ``cephfs_enable_snapshots`` to ``True`` in the section to let the driver
perform snapshot-related operations. Also set the
To let the driver perform snapshot related operations, set
cephfs_enable_snapshots to True . Also set the
``driver-handles-share-servers`` to ``False`` as the driver does not manage
the lifecycle of ``share-servers``.