Move creating fake image to oooq extras

Install qemu-img after repositories were installed.
Create a fake disk right before uploading it to glance
for multinode jobs.

Change-Id: I3a885a50828c8d87e9241f860efe89a7dc1029a6
This commit is contained in:
Sagi Shnaidman 2017-08-16 17:56:14 +03:00 committed by Emilien Macchi
parent ab17df4d04
commit 3b89cd0b3c
1 changed files with 8 additions and 5 deletions

View File

@ -38,13 +38,16 @@ openstack overcloud image upload {% if bash_deploy_ramdisk|bool %}--old-deploy-i
{% if step_glance_upload|bool %}
## * Upload images to glance, this step is specific to nodepool based deployments.
## * Create and upload image to glance, this step is specific to nodepool based deployments.
## ::
glance image-create --container-format bare \
--disk-format qcow2 \
--name overcloud-full \
--file overcloud-full.qcow2
rpm -q qemu-img || sudo yum install -y qemu-img
qemu-img create -f qcow2 overcloud-full.qcow2 1G
glance image-create --container-format bare \
--disk-format qcow2 \
--name overcloud-full \
--file overcloud-full.qcow2
{% endif %}