Merge "Fix preparation of /tftpboot for ironic-pxe"

This commit is contained in:
Zuul 2025-04-28 11:29:56 +00:00 committed by Gerrit Code Review
commit aa44d7a9d1
2 changed files with 10 additions and 1 deletions

View File

@ -51,8 +51,11 @@ function prepare_ipxe {
cp /usr/lib/ipxe/{undionly.kpxe,ipxe*.efi,snponly.efi} ${TFTPBOOT_PATH}/
elif [[ "${KOLLA_BASE_DISTRO}" =~ centos|rocky ]]; then
cp /usr/share/ipxe/{undionly.kpxe,ipxe*.efi} ${TFTPBOOT_PATH}/
cp /usr/share/ipxe/arm64-efi/snponly.efi ${TFTPBOOT_PATH}/ipxe-snponly-aarch64.efi
if [[ ! -e ${TFTPBOOT_PATH}/ipxe.efi ]]; then
ln -s ${TFTPBOOT_PATH}/ipxe-${KOLLA_BASE_ARCH}.efi ${TFTPBOOT_PATH}/ipxe.efi
# NOTE(m-anson): No ipxe-aarch64.efi exists so no need to use
# $KOLLA_BASE_ARCH in the symlink target
ln -s ${TFTPBOOT_PATH}/ipxe-x86_64.efi ${TFTPBOOT_PATH}/ipxe.efi
fi
if [[ ! -e ${TFTPBOOT_PATH}/snponly.efi ]]; then
ln -s ${TFTPBOOT_PATH}/ipxe-snponly-${KOLLA_BASE_ARCH}.efi ${TFTPBOOT_PATH}/snponly.efi

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Ensure that ipxe-snponly-aarch64.efi is available in
/tftpboot in Centos and Rocky after bootstrapping
ironic-pxe.