Merge "Deprecate spice_console and rdp_console config items"

This commit is contained in:
Zuul 2020-02-25 06:25:04 +00:00 committed by Gerrit Code Review
commit 6efb97bc9d
2 changed files with 16 additions and 2 deletions

View File

@ -0,0 +1,6 @@
---
deprecations:
- |
The config options ``CONF.compute.spice_console`` and ``CONF.compute.rdp_console``
are deprecated because test cases using them are removed.
We can add them back when adding the test cases again.

View File

@ -499,11 +499,19 @@ ComputeFeaturesGroup = [
cfg.BoolOpt('spice_console',
default=False,
help='Enable Spice console. This configuration value should '
'be same as nova.conf: spice.enabled'),
'be same as nova.conf: spice.enabled',
deprecated_for_removal=True,
deprecated_reason="This config option is not being used "
"in Tempest, we can add it back when "
"adding the test cases."),
cfg.BoolOpt('rdp_console',
default=False,
help='Enable RDP console. This configuration value should '
'be same as nova.conf: rdp.enabled'),
'be same as nova.conf: rdp.enabled',
deprecated_for_removal=True,
deprecated_reason="This config option is not being used "
"in Tempest, we can add it back when "
"adding the test cases."),
cfg.BoolOpt('serial_console',
default=False,
help='Enable serial console. This configuration value '