Make local boot explicit on software raid tests
Software RAID requies the installation of a boot loader
and in this scenario, we need to explicitly state that
local boot is desired since ironic deployments do have
a default_boot_option which can be set.
In the default case of netboot, these tests will silently
work if the content written to disk is also bootable
because the netboot default causes ironic to skip
bootloader installation.
Change-Id: I583840f2a50753fd169149d76c7123392eb362b5
Task: 36415
Story: 2006474
diff --git a/ironic_tempest_plugin/tests/scenario/ironic_standalone/test_cleaning.py b/ironic_tempest_plugin/tests/scenario/ironic_standalone/test_cleaning.py
index eb0d4d2..b1850fb 100644
--- a/ironic_tempest_plugin/tests/scenario/ironic_standalone/test_cleaning.py
+++ b/ironic_tempest_plugin/tests/scenario/ironic_standalone/test_cleaning.py
@@ -85,6 +85,8 @@
deploy_interface = 'iscsi'
raid_interface = 'agent'
api_microversion = '1.31'
+ # Software RAID is always local boot
+ boot_option = 'local'
raid_config = {
"logical_disks": [
@@ -116,6 +118,8 @@
deploy_interface = 'direct'
raid_interface = 'agent'
api_microversion = '1.31'
+ # Software RAID is always local boot
+ boot_option = 'local'
# TODO(dtantsur): more complex layout in this job
raid_config = {