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/glance/Dockerfile b/images/glance/Dockerfile
index 7171659..6aa4389 100644
--- a/images/glance/Dockerfile
+++ b/images/glance/Dockerfile
@@ -36,7 +36,7 @@
 RUN <<EOF bash -xe
 apt-get update -qq
 apt-get install -qq -y --no-install-recommends \
-    ceph-common lsscsi nvme-cli python3-rados python3-rbd qemu-utils sysfsutils udev util-linux
+    ceph-common lsscsi nvme-cli python3-rados python3-rbd qemu-block-extra qemu-utils sysfsutils udev util-linux
 apt-get clean
 rm -rf /var/lib/apt/lists/*
 EOF