Skip to content

iPXE Images (Latest)

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 27 Feb 22:06
· 84 commits to main since this release

This is the latest iPXE images build. This release is automatically updated.

Latest Build: build-20260227-220651

Download

Use the static URLs for the latest build:

# Download UEFI boot image
curl -L -O https://github.com/openstack-k8s-operators/hotstack/releases/download/latest-ipxe/ipxe-efi-latest.img

# Download BIOS boot image
curl -L -O https://github.com/openstack-k8s-operators/hotstack/releases/download/latest-ipxe/ipxe-bios-latest.img

Upload to Glance

Upload the BIOS boot image for OCP nodes:

openstack image create --disk-format=raw --file ipxe-bios-latest.img ipxe-boot-usb \
  --property os_shutdown_timeout=5 \
  --public

Upload the UEFI rescue image:

openstack image create --disk-format=raw --file ipxe-efi-latest.img ipxe-rescue-uefi \
  --property os_shutdown_timeout=5 \
  --property hw_firmware_type=uefi \
  --property hw_machine_type=q35 \
  --public

Upload the BIOS rescue image:

openstack image create --disk-format=raw --file ipxe-bios-latest.img ipxe-rescue-bios \
  --property os_shutdown_timeout=5 \
  --public

For detailed documentation, see the iPXE README.