Skip to content

Blank Image (Latest)

Pre-release
Pre-release

Choose a tag to compare

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

This is the latest Blank image build. This release is automatically updated.

Latest Build: build-20260227-220241

Download

Use the static URL for the latest build:

curl -L -O https://github.com/openstack-k8s-operators/hotstack/releases/download/latest-blank/blank-image-latest.qcow2

Or download a specific version from the releases page
to pin your setup to a known-good build.

Usage

# Upload to OpenStack Glance (qcow2 works for most deployments)
openstack image create sushy-tools-blank-image \
  --disk-format qcow2 \
  --container-format bare \
  --property hw_firmware_type=uefi \
  --property hw_machine_type=q35 \
  --property os_shutdown_timeout=5 \
  --file blank-image-latest.qcow2

# If you need raw format (required for some Ceph RBD backends):
qemu-img convert -f qcow2 -O raw blank-image-latest.qcow2 blank-image.raw
openstack image create sushy-tools-blank-image \
  --disk-format raw \
  --container-format bare \
  --property hw_firmware_type=uefi \
  --property hw_machine_type=q35 \
  --property os_shutdown_timeout=5 \
  --file blank-image.raw