diff --git a/README.rst b/README.rst index 99f0b73d..0e630eb2 100644 --- a/README.rst +++ b/README.rst @@ -96,6 +96,7 @@ where you can redefine the values of the OPENSTACK_MANILA_FEATURES dict:: * enable_replication * enable_migration * enable_public_share_type_creation + * enable_public_shares * enabled_share_protocols By default, enabled_share_protocols within the OPENSTACK_MANILA_FEATURES @@ -109,6 +110,8 @@ expected to redefine enabled_share_protocols as follows: OPENSTACK_MANILA_FEATURES = { 'enable_replication': True, 'enable_migration': True, + 'enable_public_share_type_creation': True, + 'enable_public_shares': True, 'enabled_share_protocols': ['NFS'], } diff --git a/manila_ui/local/local_settings.d/_90_manila_shares.py b/manila_ui/local/local_settings.d/_90_manila_shares.py index 0ea64f79..75d9cb39 100644 --- a/manila_ui/local/local_settings.d/_90_manila_shares.py +++ b/manila_ui/local/local_settings.d/_90_manila_shares.py @@ -17,5 +17,7 @@ OPENSTACK_MANILA_FEATURES = { 'enable_replication': True, 'enable_migration': True, + 'enable_public_share_type_creation': True, + 'enable_public_shares': True, 'enabled_share_protocols': ['NFS', 'CIFS', 'GlusterFS', 'HDFS', 'CephFS'], }