Change default boot mode to UEFI

Change the default boot mode to UEFI. This is in line with the Yoga
releases of Bifrost and Ironic.

Depends-On: https://review.opendev.org/c/openstack/kayobe/+/827667

Change-Id: I5b6f432dd47b6bb5b7dbfe82a4e4238cefcda5fe
This commit is contained in:
Mark Goddard 2022-02-02 20:20:31 +00:00
parent 296669708f
commit d0db1f1032
3 changed files with 8 additions and 3 deletions

View File

@ -113,7 +113,7 @@ default_ironic_driver: ipmi
# The default boot mode of a node. One of 'bios' or 'uefi'. Can be
# overridden per-node via properties.capabilities.boot_mode.
default_boot_mode: bios
default_boot_mode: uefi
# Maps Ironic drivers to the BMC emulation tool they support.
bmc_emulators:

View File

@ -54,8 +54,8 @@ Another variable that may be useful is ``bridge_type``. This may be either
created by Tenks. This may be different from the type of interfaces or bridges
in ``physnet_mappings``.
The default boot mode is legacy BIOS. This may be changed to UEFI by setting
``default_boot_mode`` to ``uefi`` in a variable file. The boot mode for nodes
The default boot mode is UEFI. This may be changed to legacy BIOS by setting
``default_boot_mode`` to ``bios`` in a variable file. The boot mode for nodes
may be set individually via ``ironic_config.properties.capabilities.boot_mode``
in the ``specs`` list.

View File

@ -0,0 +1,5 @@
---
upgrade:
- |
Changes the default boot mode to UEFI. The previous default of legacy BIOS
may be restored by setting ``default_boot_mode`` to ``bios``.