Add forgotten cinder backend vmdk

During plugins refactor option to set vmdk as cinder backend was lost.

Change-Id: I0ff7b98dbc8762023d771f2e94fabe973145c0a6
Closes-Bug: rhbz#1109374
This commit is contained in:
Lukas Bezdicka
2014-06-16 16:38:48 +02:00
parent 4bc938c3df
commit cbf11bf226
2 changed files with 2 additions and 2 deletions

View File

@@ -163,7 +163,7 @@ Cinder Config parameters
The password to use for the Cinder to authenticate with Keystone.
**CONFIG_CINDER_BACKEND**
The Cinder backend to use ['lvm', 'gluster', 'nfs'].
The Cinder backend to use ['lvm', 'gluster', 'nfs', 'vmdk'].
Cinder volume create Config parameters
--------------------------------------

View File

@@ -65,7 +65,7 @@ def initConfig(controller):
"USAGE": ("The Cinder backend to use, valid options are: lvm, "
"gluster, nfs"),
"PROMPT": "Enter the Cinder backend to be configured",
"OPTION_LIST": ["lvm", "gluster", "nfs"],
"OPTION_LIST": ["lvm", "gluster", "nfs", "vmdk"],
"VALIDATORS": [validators.validate_options],
"DEFAULT_VALUE": "lvm",
"MASK_INPUT": False,