summaryrefslogtreecommitdiff
path: root/ironic/conf/deploy.py
diff options
context:
space:
mode:
authorJulia Kreger <juliaashleykreger@gmail.com>2021-09-21 07:13:37 -0700
committerJulia Kreger <juliaashleykreger@gmail.com>2021-10-04 11:57:55 -0700
commit493b4f0caf591caeaa3285c7f597a54121d99985 (patch)
treef11d4ca6164860260b4106a8bf92a3651a48d212 /ironic/conf/deploy.py
parent29313ae4d7a32808caacbe75f09a75b959473b85 (diff)
downloadironic-493b4f0caf591caeaa3285c7f597a54121d99985.tar.gz
Yoga: Change default boot mode to uefi
Change the default boot mode to UEFI, as discussed during the end of the Wallaby release cycle and previously agreed a very long time ago by the Ironic community. Change-Id: I6d735604d56d1687f42d0573a2eed765cbb08aec
Diffstat (limited to 'ironic/conf/deploy.py')
-rw-r--r--ironic/conf/deploy.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/ironic/conf/deploy.py b/ironic/conf/deploy.py
index 5729be74f..32f53644a 100644
--- a/ironic/conf/deploy.py
+++ b/ironic/conf/deploy.py
@@ -132,14 +132,17 @@ opts = [
cfg.StrOpt('default_boot_mode',
choices=[(boot_modes.UEFI, _('UEFI boot mode')),
(boot_modes.LEGACY_BIOS, _('Legacy BIOS boot mode'))],
- default=boot_modes.LEGACY_BIOS,
+ default=boot_modes.UEFI,
mutable=True,
help=_('Default boot mode to use when no boot mode is '
'requested in node\'s driver_info, capabilities or '
'in the `instance_info` configuration. Currently the '
- 'default boot mode is "%(bios)s", but it will be '
- 'changed to "%(uefi)s in the future. It is recommended '
- 'to set an explicit value for this option. This option '
+ 'default boot mode is "%(uefi)s", but it was '
+ '"%(bios)s" previously in Ironic. It is recommended '
+ 'to set an explicit value for this option, and if the '
+ 'setting or default differs from nodes, to ensure that '
+ 'nodes are configured specifically for their desired '
+ 'boot mode. This option '
'only has effect when management interface supports '
'boot mode management') % {
'bios': boot_modes.LEGACY_BIOS,