Merge "Update eqlx driver help text"

This commit is contained in:
Jenkins 2015-02-05 18:55:33 +00:00 committed by Gerrit Code Review
commit 734f98f309

View File

@ -37,26 +37,31 @@ LOG = logging.getLogger(__name__)
eqlx_opts = [ eqlx_opts = [
cfg.StrOpt('eqlx_group_name', cfg.StrOpt('eqlx_group_name',
default='group-0', default='group-0',
help='Group name to use for creating volumes'), help='Group name to use for creating volumes. Defaults to '
'"group-0".'),
cfg.IntOpt('eqlx_cli_timeout', cfg.IntOpt('eqlx_cli_timeout',
default=30, default=30,
help='Timeout for the Group Manager cli command execution'), help='Timeout for the Group Manager cli command execution. '
'Default is 30.'),
cfg.IntOpt('eqlx_cli_max_retries', cfg.IntOpt('eqlx_cli_max_retries',
default=5, default=5,
help='Maximum retry count for reconnection'), help='Maximum retry count for reconnection. Default is 5.'),
cfg.BoolOpt('eqlx_use_chap', cfg.BoolOpt('eqlx_use_chap',
default=False, default=False,
help='Use CHAP authentication for targets?'), help='Use CHAP authentication for targets. Defaults to '
'"False".'),
cfg.StrOpt('eqlx_chap_login', cfg.StrOpt('eqlx_chap_login',
default='admin', default='admin',
help='Existing CHAP account name'), help='Existing CHAP account name. Defaults to "admin".'),
cfg.StrOpt('eqlx_chap_password', cfg.StrOpt('eqlx_chap_password',
default='password', default='password',
help='Password for specified CHAP account name', help='Password for specified CHAP account name. Defaults '
'to "password".',
secret=True), secret=True),
cfg.StrOpt('eqlx_pool', cfg.StrOpt('eqlx_pool',
default='default', default='default',
help='Pool in which volumes will be created') help='Pool in which volumes will be created. Defaults '
'to "default".')
] ]