Merge "Deprecate enable_mistral and enable_zaqar"

This commit is contained in:
Zuul 2021-06-29 22:51:45 +00:00 committed by Gerrit Code Review
commit 8ae8f1b12d
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,6 @@
---
features:
- |
The ``enable_mistral`` parameter and the ``enable_zaqar`` parameter in
undercloud/standalone deployment have been deprecated and will be removed
in a future release.

View File

@ -74,6 +74,9 @@ class StandaloneConfig(BaseConfig):
),
cfg.BoolOpt('enable_mistral',
default=mistral,
deprecated_for_removal=True,
deprecated_reason=('Support for the mistral service '
'has been deprecated.'),
help=_('Whether to enable the mistral service.')),
cfg.BoolOpt('enable_nova',
default=nova,
@ -100,6 +103,9 @@ class StandaloneConfig(BaseConfig):
),
cfg.BoolOpt('enable_zaqar',
default=zaqar,
deprecated_for_removal=True,
deprecated_reason=('Support for the zaqar service '
'has been deprecated.'),
help=_('Whether to enable the zaqar service.')),
cfg.BoolOpt('enable_neutron',
default=neutron,