Prevent pxe_ilo driver from guessing the boot mode to use

The iLO drivers try to set boot mode to UEFI when they detect UEFI-capable hardware.
This can be surprising for operators, as it's not consistent with other drivers.
Also, UEFI support in TripleO is somewhat less mature.

Change the default boot mode to "bios" via puppet. Operators can still change
the boot mode per node by setting an appropriate capability.

Change-Id: Ide26d05289ba962759163a60dab06e5152812dba
Closes-Bug: #1604002
This commit is contained in:
Dmitry Tantsur
2016-11-01 15:41:47 +01:00
parent 8c688222fa
commit f3fd1e384e
2 changed files with 3 additions and 1 deletions

View File

@@ -433,6 +433,7 @@ include ::nova::network::neutron
include ::ironic
include ::ironic::api
include ::ironic::conductor
include ::ironic::drivers::ilo
include ::ironic::drivers::ipmi
include ::ironic::drivers::pxe
include ::ironic::drivers::ssh

View File

@@ -450,8 +450,9 @@ ironic::drivers::agent::deploy_logs_collect: 'always'
ironic::drivers::agent::deploy_logs_storage_backend: 'local'
ironic::drivers::agent::deploy_logs_local_path: '/var/log/ironic/deploy/'
# Ironic ipmi
# Ironic power and management drivers tuning
ironic::drivers::ipmi::retry_timeout: 15
ironic::drivers::ilo::default_boot_mode: 'bios'
# Rabbit
rabbit_cookie: {{UNDERCLOUD_RABBIT_COOKIE}}