Merge "Correct typo in config option choices"

This commit is contained in:
Zuul 2018-12-26 08:29:37 +00:00 committed by Gerrit Code Review
commit 7c6b851d66
2 changed files with 8 additions and 4 deletions

View File

@ -20,7 +20,7 @@
# Possible values: # Possible values:
# * qcow2 # * qcow2
# * raw # * raw
# * vdmk # * vmdk
# #
# Related Options: # Related Options:
# * disk_formats # * disk_formats
@ -28,7 +28,7 @@
# Possible values: # Possible values:
# qcow2 - <No description provided> # qcow2 - <No description provided>
# raw - <No description provided> # raw - <No description provided>
# vdmk - <No description provided> # vmdk - <No description provided>
#output_format = raw #output_format = raw
@ -60,6 +60,10 @@
# * Any provided Task object name to be included # * Any provided Task object name to be included
# in to the flow. # in to the flow.
# (list value) # (list value)
#
# This option has a sample default set, which means that
# its actual default value may vary from the one documented
# below.
#image_import_plugins = [no_op] #image_import_plugins = [no_op]

View File

@ -32,7 +32,7 @@ LOG = logging.getLogger(__name__)
conversion_plugin_opts = [ conversion_plugin_opts = [
cfg.StrOpt('output_format', cfg.StrOpt('output_format',
default='raw', default='raw',
choices=('qcow2', 'raw', 'vdmk'), choices=('qcow2', 'raw', 'vmdk'),
help=_(""" help=_("""
Desired output format for image conversion plugin. Desired output format for image conversion plugin.
@ -46,7 +46,7 @@ the conversion and import will fail.
Possible values: Possible values:
* qcow2 * qcow2
* raw * raw
* vdmk * vmdk
Related Options: Related Options:
* disk_formats * disk_formats