Merge "Standalone: Remove undercloud from parameter descriptions"

This commit is contained in:
Zuul 2021-06-29 22:51:42 +00:00 committed by Gerrit Code Review
commit da0fb6086c

View File

@ -60,9 +60,7 @@ class StandaloneConfig(BaseConfig):
# service enablement # service enablement
cfg.BoolOpt('enable_cinder', cfg.BoolOpt('enable_cinder',
default=cinder, default=cinder,
help=_( help=_('Whether to install the cinder service.')),
'Whether to install the Volume service. It is not '
'currently used in the undercloud.')),
cfg.BoolOpt('enable_frr', cfg.BoolOpt('enable_frr',
default=frr, default=frr,
help=_('Whether to enable the frr service.')), help=_('Whether to enable the frr service.')),
@ -71,8 +69,8 @@ class StandaloneConfig(BaseConfig):
help=_('Whether to enable the ironic service.')), help=_('Whether to enable the ironic service.')),
cfg.BoolOpt('enable_ironic_inspector', cfg.BoolOpt('enable_ironic_inspector',
default=ironic_inspector, default=ironic_inspector,
help=_( help=_('Whether to enable the ironic inspector '
'Whether to enable the ironic inspector service.') 'service.')
), ),
cfg.BoolOpt('enable_mistral', cfg.BoolOpt('enable_mistral',
default=mistral, default=mistral,
@ -82,19 +80,17 @@ class StandaloneConfig(BaseConfig):
help=_('Whether to enable the nova service.')), help=_('Whether to enable the nova service.')),
cfg.BoolOpt('enable_novajoin', cfg.BoolOpt('enable_novajoin',
default=novajoin, default=novajoin,
help=_('Whether to install novajoin metadata service ' help=_('Whether to install the novajoin metadata '
'in the Undercloud.') 'service')
), ),
cfg.BoolOpt('enable_swift', cfg.BoolOpt('enable_swift',
default=swift, default=swift,
help=_('Whether to install Swift services in the ' help=_('Whether to install the swift services')
'Undercloud.')
), ),
cfg.BoolOpt('enable_telemetry', cfg.BoolOpt('enable_telemetry',
default=telemetry, default=telemetry,
help=_('Whether to install Telemetry services ' help=_('Whether to install Telemetry services '
'(ceilometer, gnocchi, aodh) in the ' '(ceilometer, gnocchi, aodh).')
'Undercloud.')
), ),
cfg.BoolOpt('enable_validations', cfg.BoolOpt('enable_validations',
default=validations, default=validations,