Add CEPHFS manila share protocol

Allows to use OS::Manila::Share with share_protocol set to CEPHFS.

Closes-Bug: #1664574
Change-Id: Ia2ece0163a3c25eb28bc0b471cd1797d52fe4e3c
This commit is contained in:
Jan Provaznik 2017-01-23 12:00:11 +01:00
parent 2fa8cc09d3
commit ddb0dff5ab
2 changed files with 6 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class ManilaShare(resource.Resource):
_('Share protocol supported by shared filesystem.'),
required=True,
constraints=[constraints.AllowedValues(
['NFS', 'CIFS', 'GlusterFS', 'HDFS'])]
['NFS', 'CIFS', 'GlusterFS', 'HDFS', 'CEPHFS'])]
),
SIZE: properties.Schema(
properties.Schema.INTEGER,

View File

@ -0,0 +1,5 @@
---
fixes:
- |
'CEPHFS' can be used as a share protocol when using OS::Manila::Share
resource.