Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
🐛CloudInit: baremetal node fails to deploy using a local config drive
Browse files Browse the repository at this point in the history
Trying to deploy using a config drive on the client side requires
'genisoimage' binary to be present.
This patch install the missing package.

Fixes #27

Signed-off-by: LALLAU Bertrand <[email protected]>
  • Loading branch information
LALLAU Bertrand committed Sep 17, 2024
1 parent 5395363 commit 77eb52f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM quay.io/centos/centos:stream9
# Help people find the actual baremetal command
COPY scripts/openstack /usr/bin/openstack

RUN dnf install -y python3 python3-pip && \
RUN dnf install -y python3 python3-pip genisoimage && \
pip install python-ironicclient --prefix /usr --no-cache-dir && \
chmod +x /usr/bin/openstack && \
dnf update -y && \
Expand Down

0 comments on commit 77eb52f

Please sign in to comment.