fix: Install qemu-block-extra in nova, cinder, ironic images (#1184)
fix #1183
In Ubuntu Jammy, the qemu-block-extra package is no longer required by the qemu-utils package and should be additionally installed to use rbd backend.
Depends-On: #1181
diff --git a/images/ironic/Dockerfile b/images/ironic/Dockerfile
index bd4c7fe..a006e08 100644
--- a/images/ironic/Dockerfile
+++ b/images/ironic/Dockerfile
@@ -30,7 +30,7 @@
RUN <<EOF bash -xe
apt-get update -qq
apt-get install -qq -y --no-install-recommends \
- ethtool ipmitool iproute2 ipxe lshw qemu-utils tftpd-hpa
+ ethtool ipmitool iproute2 ipxe lshw qemu-block-extra qemu-utils tftpd-hpa
apt-get clean
rm -rf /var/lib/apt/lists/*
EOF