8a543098d6
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>
81 lines
1.9 KiB
Bash
Executable File
81 lines
1.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_tacker {
|
|
echo "TESTING: Tacker VIM,VNFD and VNF creation"
|
|
sh contrib/demos/tacker/deploy-tacker-demo
|
|
openstack vim list
|
|
openstack vnf list
|
|
openstack vnf descriptor list
|
|
|
|
while [[ $(openstack vnf show kolla-sample-vnf -f value -c status) != "ACTIVE" ]]; do
|
|
echo "VNF not running yet"
|
|
attempt=$((attempt+1))
|
|
if [[ $attempt -eq 10 ]]; then
|
|
echo "VNF failed to start"
|
|
openstack vnf show kolla-sample-vnf
|
|
return 1
|
|
fi
|
|
sleep 10
|
|
done
|
|
}
|
|
|
|
function test_barbican {
|
|
echo "TESTING: Barbican"
|
|
openstack secret list
|
|
}
|
|
|
|
function test_mistral {
|
|
echo "TESTING: Mistral"
|
|
openstack workflow list
|
|
openstack workflow execution list
|
|
openstack action execution list
|
|
}
|
|
|
|
function test_nova {
|
|
echo "TESTING: Nova"
|
|
openstack server list
|
|
}
|
|
|
|
function test_heat {
|
|
echo "TESTING: Heat"
|
|
openstack stack list
|
|
}
|
|
|
|
function install_requirements {
|
|
echo "TESTING: Install requirements"
|
|
pip install "python-tackerclient" "python-heatclient" "networking-sfc" "python-mistralclient" "python-barbicanclient"
|
|
}
|
|
|
|
function test_scenario_nfv_logged {
|
|
. /etc/kolla/admin-openrc.sh
|
|
. ~/openstackclient-venv/bin/activate
|
|
|
|
install_requirements
|
|
test_tacker
|
|
test_barbican
|
|
test_mistral
|
|
test_nova
|
|
test_heat
|
|
}
|
|
|
|
function test_scenario_nfv {
|
|
echo "Testing Scenario NFV"
|
|
test_scenario_nfv_logged > /tmp/logs/ansible/test-scenario-nfv 2>&1
|
|
result=$?
|
|
if [[ $result != 0 ]]; then
|
|
echo "Testing Scenario NFV failed. See ansible/test-scenario-nfv for details"
|
|
else
|
|
echo "Successfully Scenario NFV. See ansible/test-scenario-nfv for details"
|
|
fi
|
|
return $result
|
|
}
|
|
|
|
test_scenario_nfv
|