9e9707bfe5
We install kolla-ansible requirements in Zuul's Ansible playbooks.
This patch cleans up the installation in scripts so that they are
only concerned with auxiliary requirements:
- ansible (since we do not track it in requirements)
- ara (for log summaries)
- openstack clients (for first init and tests after deployment)
Additionally this patch installs openstack clients in a separate
virtualenv.
Note that all kolla-ansible requirements, ansible and ara are still
installed system-wide.
Change-Id: Iac04082ad39a9d823c515ba11c5db9af50ed225f
Signed-off-by: Radosław Piliszek <radoslaw.piliszek@gmail.com>
(cherry picked from commit 8a543098d6
)
115 lines
3.9 KiB
Bash
Executable File
115 lines
3.9 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o xtrace
|
|
set -o errexit
|
|
|
|
# Enable unbuffered output for Ansible in Jenkins.
|
|
export PYTHONUNBUFFERED=1
|
|
|
|
function test_openstack_logged {
|
|
. /etc/kolla/admin-openrc.sh
|
|
. ~/openstackclient-venv/bin/activate
|
|
|
|
openstack --debug compute service list
|
|
openstack --debug network agent list
|
|
|
|
echo "TESTING: Server creation"
|
|
openstack server create --wait --image cirros --flavor m1.tiny --key-name mykey --network demo-net kolla_boot_test
|
|
openstack --debug server list
|
|
# If the status is not ACTIVE, print info and exit 1
|
|
if [[ $(openstack server show kolla_boot_test -f value -c status) != "ACTIVE" ]]; then
|
|
echo "FAILED: Instance is not active"
|
|
openstack --debug server show kolla_boot_test
|
|
return 1
|
|
fi
|
|
echo "SUCCESS: Server creation"
|
|
|
|
if [[ $ACTION =~ "ceph" ]] || [[ $ACTION == "cinder-lvm" ]]; then
|
|
echo "TESTING: Cinder volume attachment"
|
|
openstack volume create --size 2 test_volume
|
|
attempt=1
|
|
while [[ $(openstack volume show test_volume -f value -c status) != "available" ]]; do
|
|
echo "Volume not available yet"
|
|
attempt=$((attempt+1))
|
|
if [[ $attempt -eq 10 ]]; then
|
|
echo "Volume failed to become available"
|
|
openstack volume show test_volume
|
|
return 1
|
|
fi
|
|
sleep 10
|
|
done
|
|
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
|
|
attempt=1
|
|
while [[ $(openstack volume show test_volume -f value -c status) != "available" ]]; do
|
|
echo "Volume not detached yet"
|
|
attempt=$((attempt+1))
|
|
if [[ $attempt -eq 10 ]]; then
|
|
echo "Volume failed to detach"
|
|
openstack volume show test_volume
|
|
return 1
|
|
fi
|
|
sleep 10
|
|
done
|
|
openstack volume delete test_volume
|
|
echo "SUCCESS: Cinder volume attachment"
|
|
fi
|
|
|
|
echo "TESTING: Server deletion"
|
|
openstack server delete --wait kolla_boot_test
|
|
echo "SUCCESS: Server deletion"
|
|
|
|
if echo $ACTION | grep -q "zun"; then
|
|
echo "TESTING: Zun"
|
|
openstack appcontainer service list
|
|
openstack appcontainer host list
|
|
openstack subnet set --no-dhcp demo-subnet
|
|
sudo docker pull alpine
|
|
sudo docker save alpine | openstack image create alpine --public --container-format docker --disk-format raw
|
|
openstack appcontainer run --name test alpine sleep 1000
|
|
attempt=1
|
|
while [[ $(openstack appcontainer show test -f value -c status) != "Running" ]]; do
|
|
echo "Container not running yet"
|
|
attempt=$((attempt+1))
|
|
if [[ $attempt -eq 10 ]]; then
|
|
echo "Container failed to start"
|
|
openstack appcontainer show test
|
|
return 1
|
|
fi
|
|
sleep 10
|
|
done
|
|
openstack appcontainer list
|
|
openstack appcontainer delete --force --stop test
|
|
echo "SUCCESS: Zun"
|
|
fi
|
|
}
|
|
|
|
function test_openstack {
|
|
echo "Testing OpenStack"
|
|
log_file=/tmp/logs/ansible/test-openstack
|
|
if [[ -f $log_file ]]; then
|
|
log_file=${log_file}-upgrade
|
|
fi
|
|
test_openstack_logged > $log_file 2>&1
|
|
result=$?
|
|
if [[ $result != 0 ]]; then
|
|
echo "Testing OpenStack failed. See ansible/test-openstack for details"
|
|
else
|
|
echo "Successfully tested OpenStack. See ansible/test-openstack for details"
|
|
fi
|
|
return $result
|
|
}
|
|
|
|
test_openstack
|