Merge "Enable iPXE boot interface by default"

This commit is contained in:
Zuul 2021-11-25 12:11:42 +00:00 committed by Gerrit Code Review
commit 6f551d0a33
2 changed files with 11 additions and 1 deletions

View File

@ -101,7 +101,7 @@ driver_opts = [
cfg.StrOpt('default_bios_interface',
help=_DEFAULT_IFACE_HELP.format('bios')),
cfg.ListOpt('enabled_boot_interfaces',
default=['pxe', 'redfish-virtual-media'],
default=['ipxe', 'pxe', 'redfish-virtual-media'],
help=_ENABLED_IFACE_HELP.format('boot')),
cfg.StrOpt('default_boot_interface',
help=_DEFAULT_IFACE_HELP.format('boot')),

View File

@ -0,0 +1,10 @@
---
features:
- |
The ``ipxe`` boot interface is now enabled by default.
upgrade:
- |
The ``ipxe`` boot interface is now enabled and will have priority over
``pxe`` by default. If you rely on the default value of the
``enabled_boot_interfaces`` option to not contain ``ipxe``, you need to set
it explicitly.