From bb43fd8b7574b2eacdd4d6472fed1c1d97f88ab3 Mon Sep 17 00:00:00 2001 From: Riccardo Pittau Date: Tue, 1 Feb 2022 15:06:28 +0100 Subject: [PATCH] Fix dib ipa jobs The dib image is based on debian "bullseye" which currently suffers of two issues: - does not get an ip when booting - does not recognize any partition for the EFI installation The first issue is fixed by the patch in diskimage-builder this patch depends on. The second issue is fixed addin the block-device-efi dib element to the dib image. Depends-On: I117964a60615a5b7e9984f52f02cd018d1a48ed0 Story: 2009756 Task: 44226 Change-Id: I7ee0bd04f387e7fc2055feeab345f80ca6b3ad0a --- playbooks/install.yaml | 1 + zuul.d/project.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/playbooks/install.yaml b/playbooks/install.yaml index a3bcd3b6e..a0cdd6b32 100644 --- a/playbooks/install.yaml +++ b/playbooks/install.yaml @@ -34,6 +34,7 @@ dib_imagetype: "qcow2" dib_elements: > {{ dib_image_type|default('vm') }} + {% if default_boot_mode != "bios" %}block-device-efi{% endif %} enable-serial-console {{ dib_init_element|default('simple-init') }} {{ extra_dib_elements|default('') }} diff --git a/zuul.d/project.yaml b/zuul.d/project.yaml index 7a487e9a2..b343c05fc 100644 --- a/zuul.d/project.yaml +++ b/zuul.d/project.yaml @@ -80,4 +80,4 @@ - bifrost-upgrade-keystone-centos8 experimental: jobs: - - bifrost-benchmark-ironic + - bifrost-benchmark-ironic \ No newline at end of file