Update settings file with all available config options

Changes [1] and [2] added new config options in code logic, but
not in settings file. So, add them to settings file too to ease
tracking of configuration options. These two are the only absent
defaults for the moment.

[1] I0c256d0007395e659f804e8874424f4148021ca8
[2] Ia3808486b8604270127c22d45e455e1955b36dba

Change-Id: Ia461c5a5b182d109b3e55696491766043eb0ad2b
This commit is contained in:
vponomaryov 2017-01-10 12:26:07 +02:00
parent 85d17c9bad
commit dbf90b2941
2 changed files with 5 additions and 0 deletions

View File

@ -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'],
}

View File

@ -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'],
}