diff --git a/heat/engine/resources/openstack/manila/share.py b/heat/engine/resources/openstack/manila/share.py index 43a69eadc0..80d1f2a207 100644 --- a/heat/engine/resources/openstack/manila/share.py +++ b/heat/engine/resources/openstack/manila/share.py @@ -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, diff --git a/releasenotes/notes/add-cephfs-share-protocol-033e091e7c6c5166.yaml b/releasenotes/notes/add-cephfs-share-protocol-033e091e7c6c5166.yaml new file mode 100644 index 0000000000..b90541d5de --- /dev/null +++ b/releasenotes/notes/add-cephfs-share-protocol-033e091e7c6c5166.yaml @@ -0,0 +1,5 @@ +--- +fixes: + - | + 'CEPHFS' can be used as a share protocol when using OS::Manila::Share + resource.