Merge "Remove uml virt type support"

This commit is contained in:
Zuul 2024-08-08 10:01:03 +00:00 committed by Gerrit Code Review
commit 2be0471248
2 changed files with 6 additions and 2 deletions

View File

@ -30,7 +30,7 @@ LOG = logging.getLogger(__name__)
OPTS = [
cfg.StrOpt('libvirt_type',
default='kvm',
choices=['kvm', 'lxc', 'qemu', 'parallels', 'uml'],
choices=['kvm', 'lxc', 'qemu', 'parallels'],
help='Libvirt domain type.'),
cfg.StrOpt('libvirt_uri',
default='',
@ -39,7 +39,6 @@ OPTS = [
]
LIBVIRT_PER_TYPE_URIS = dict(
uml='uml:///system',
parallels='parallels:///system',
lxc='lxc:///')

View File

@ -0,0 +1,5 @@
---
upgrade:
- |
The ``[DEFAULT] virt_type`` option no longer supports ``uml``. UML support
by nova was removed in nova 23.3.0 release.