Merge "Wait for volume attachment in CI before detach"

This commit is contained in:
Zuul 2019-01-23 07:21:54 +00:00 committed by Gerrit Code Review
commit 0cbf0a6c7a
1 changed files with 11 additions and 0 deletions

View File

@ -28,6 +28,17 @@ function test_openstack_logged {
echo "TESTING: Cinder volume attachment"
openstack volume create --size 2 test_volume
openstack server add volume kolla_boot_test test_volume --device /dev/vdb
attempt=1
while [[ $(openstack volume show test_volume -f value -c status) != "in-use" ]]; do
echo "Volume not attached yet"
attempt=$((attempt+1))
if [[ $attempt -eq 10 ]]; then
echo "Volume failed to attach"
openstack volume show test_volume
return 1
fi
sleep 10
done
openstack server remove volume kolla_boot_test test_volume
echo "SUCCESS: Cinder volume attachment"
fi