Skip to content

Commit 039b041

Browse files
authored
Fix missing qemu binary inside ironic conductor (#128)
Fixes `Stderr: 'python3 -m oslo_concurrency.prlimit: failed to execute qemu-img: [Errno 2] No such file or directory\n'`
1 parent 32ce4c1 commit 039b041

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ContainerFiles/ironic-conductor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ LABEL org.opencontainers.image.description="OpenStack Service (ironic-conductor)
5858
COPY --from=dependency_build /var/lib/openstack /var/lib/openstack
5959
RUN export DEBIAN_FRONTEND=noninteractive \
6060
&& apt-get update && apt-get upgrade -y \
61-
&& apt-get install --no-install-recommends -y libxml2 ipmitool iproute2 \
61+
&& apt-get install --no-install-recommends -y libxml2 ipmitool iproute2 qemu-utils \
6262
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \
6363
&& apt-get clean -y \
6464
&& rm -rf /var/lib/apt/lists/* \

0 commit comments

Comments
 (0)