Merge "[CI] Test image from instance"

This commit is contained in:
Zuul 2022-10-27 15:59:43 +00:00 committed by Gerrit Code Review
commit ef9a20c11a

View File

@ -77,6 +77,26 @@ function create_an_image_from_volume {
done
}
function create_an_image_from_instance {
local image_name=$1
local instance_name=$2
local attempt
openstack server image create $instance_name --name $image_name
attempt=1
while [[ $(openstack image show $image_name -f value -c status) != "active" ]]; do
echo "Image $image_name not active yet"
attempt=$((attempt+1))
if [[ $attempt -eq 11 ]]; then
echo "Image $image_name failed to become active"
openstack image show $image_name
return 1
fi
sleep 30
done
}
function attach_and_detach_a_volume {
local volume_name=$1
local instance_name=$2
@ -259,6 +279,11 @@ function test_instance_boot {
echo "SUCCESS: Glance image from Cinder volume and back to volume"
fi
echo "TESTING: Instance image upload"
create_an_image_from_instance image_from_instance kolla_boot_test
openstack image delete image_from_instance
echo "SUCCESS: Instance image upload"
echo "TESTING: Floating ip allocation"
fip_addr=$(create_fip)
attach_fip kolla_boot_test ${fip_addr}