blob: ab1d95bae0a5ccc25a6f228b3bee834837bf6796 [file] [log] [blame]
Oleksii Zhurba1580fc52017-11-14 15:20:44 -06001#!/bin/bash
2
Oleksii Zhurba1580fc52017-11-14 15:20:44 -06003variables=(
4OS_USERNAME
5OS_PASSWORD
6OS_TENANT_NAME
7OS_AUTH_URL
8)
9
10check_variables () {
11 for i in $(seq 0 $(( ${#variables[@]} - 1 )) ); do
12 if [ -z "${!variables[$i]}" ]; then
13 echo "Variable \"${variables[$i]}\" is not defined"
14 exit 1
15 fi
16 done
Oleksii Zhurbac8058d62018-06-21 17:46:11 -050017 ip=$(echo ${OS_AUTH_URL} | sed -e 's/[^/]*\/\/\([^@]*@\)\?\([^:/]*\).*/\2/')
18 export no_proxy=$ip
Oleksii Zhurba1580fc52017-11-14 15:20:44 -060019}
20
21rally_configuration () {
Oleksii Zhurba22737902018-02-07 14:09:47 -060022 rally_version=$(rally version 2>&1)
Oleksii Zhurbac8058d62018-06-21 17:46:11 -050023 # will be removed when we switch to Rally 0.9.2+
Oleksii Zhurba22737902018-02-07 14:09:47 -060024 if [ "$rally_version" == "0.9.0" ] || [ "$rally_version" == "0.9.1" ]; then
25 pip install ansible==2.3.2.0
Oleksii Zhurba167f4652018-03-29 16:43:41 -050026 sed -i '270s/,/}#,/g' /usr/local/lib/python2.7/dist-packages/rally/plugins/openstack/wrappers/network.py
Oleksii Zhurba22737902018-02-07 14:09:47 -060027 fi
Oleksii Zhurba1580fc52017-11-14 15:20:44 -060028 sub_name=`date "+%H_%M_%S"`
29 rally deployment create --fromenv --name=tempest_$sub_name
30 rally deployment config
31}
32
Oleksii Zhurbac8058d62018-06-21 17:46:11 -050033additional_tempest_plugins (){
34if [ -n "${PROXY}" ]; then
35 export https_proxy=$PROXY
36fi
37rally verify add-verifier-ext --source https://github.com/openstack/telemetry-tempest-plugin
38rally verify add-verifier-ext --source https://github.com/openstack/heat-tempest-plugin
39unset https_proxy
40}
41
Oleksii Zhurba1580fc52017-11-14 15:20:44 -060042tempest_configuration () {
43 sub_name=`date "+%H_%M_%S"`
Oleksii Zhurbac8058d62018-06-21 17:46:11 -050044 if [ -n "${OFFLINE}" ]; then
45 rally verify create-verifier --name tempest_verifier_$sub_name --type tempest --source $TEMPEST_REPO --system-wide --version $tempest_version
46 cd /var/lib/
47 else
48 if [ -n "${PROXY}" ]; then
49 export https_proxy=$PROXY
50 fi
51 rally verify create-verifier --name tempest_verifier_$sub_name --type tempest --source $TEMPEST_REPO --version $tempest_version
52 unset https_proxy
Oleksii Zhurba1580fc52017-11-14 15:20:44 -060053 fi
Oleksii Zhurba1580fc52017-11-14 15:20:44 -060054 rally verify configure-verifier --show
Oleksii Zhurbac8058d62018-06-21 17:46:11 -050055 additional_tempest_plugins
Oleksii Zhurba1580fc52017-11-14 15:20:44 -060056}
57
Oleksii Zhurbab9133f72017-11-15 17:53:02 -060058quick_configuration () {
59current_path=$(pwd)
60#image
Oleksii Zhurbafe6b5712018-06-14 13:05:00 -050061glance image-list | grep "\btestvm\b" 2>&1 >/dev/null || {
Oleksii Zhurbab9133f72017-11-15 17:53:02 -060062 if [ -n "${PROXY}" ]; then
63 export http_proxy=$PROXY
64 fi
Oleksii Zhurba0aa46702018-02-07 16:17:39 -060065 ls $current_path/cvp-configuration/cirros-0.3.4-x86_64-disk.img || wget http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-disk.img -O $current_path/cvp-configuration/cirros-0.3.4-x86_64-disk.img
Oleksii Zhurbab9133f72017-11-15 17:53:02 -060066 unset http_proxy
Oleksii Zhurba0aa46702018-02-07 16:17:39 -060067 echo "MD5 should be ee1eca47dc88f4879d8a229cc70a07c6"
Oleksii Zhurbab9133f72017-11-15 17:53:02 -060068 md5sum $current_path/cvp-configuration/cirros-0.3.4-x86_64-disk.img
Oleksii Zhurbafe6b5712018-06-14 13:05:00 -050069 glance image-create --name=testvm --visibility=public --container-format=bare --disk-format=qcow2 < $current_path/cvp-configuration/cirros-0.3.4-x86_64-disk.img
Oleksii Zhurbab9133f72017-11-15 17:53:02 -060070}
Oleksii Zhurbafe6b5712018-06-14 13:05:00 -050071IMAGE_REF2=$(glance image-list | grep 'testvm' | awk '{print $2}')
Oleksii Zhurba0aa46702018-02-07 16:17:39 -060072#flavor for rally
73nova flavor-list | grep tiny 2>&1 >/dev/null || {
74 echo "Let's create m1.tiny flavor"
75 nova flavor-create --is-public true m1.tiny auto 128 1 1
76}
77#shared fixed network
78shared_count=`neutron net-list -c name -c shared | grep True | wc -l`
79if [ $shared_count -gt 1 ]; then
80 echo "TOO MANY SHARED NETWORKS! Script will choose just 1 random"
81fi
82if [ $shared_count -eq 0 ]; then
83 echo "Let's create shared fixed net"
Oleksii Zhurbafe6b5712018-06-14 13:05:00 -050084 neutron net-create --shared tempest-net
85 neutron subnet-create --name tempest-subnet --gateway 192.168.0.1 --allocation-pool start=192.168.0.2,end=192.168.0.254 --ip-version 4 tempest-net 192.168.0.0/24
Oleksii Zhurba0aa46702018-02-07 16:17:39 -060086fi
87FIXED_NET=$(neutron net-list -c name -c shared | grep True | awk '{print $2}' | tail -n 1)
88echo "Fixed net is: $FIXED_NET"
89#Updating of tempest_full.conf file is skipped/deprecated
Oleksii Zhurbab9133f72017-11-15 17:53:02 -060090sed -i 's/${IMAGE_REF2}/'$IMAGE_REF2'/g' $current_path/cvp-configuration/tempest/tempest_ext.conf
Oleksii Zhurba0aa46702018-02-07 16:17:39 -060091sed -i 's/${FIXED_NET}/'$FIXED_NET'/g' $current_path/cvp-configuration/tempest/tempest_ext.conf
Oleksii Zhurbab9133f72017-11-15 17:53:02 -060092sed -i 's/publicURL/'$TEMPEST_ENDPOINT_TYPE'/g' $current_path/cvp-configuration/tempest/tempest_ext.conf
93cat $current_path/cvp-configuration/tempest/tempest_ext.conf
94}
95
Oleksii Zhurbaba5883f2018-01-18 09:52:08 -060096if [ "$1" == "reconfigure" ]; then
97 echo "This is reconfiguration"
98 rally verify configure-verifier --reconfigure
Oleksii Zhurbac8058d62018-06-21 17:46:11 -050099 rally verify configure-verifier --extend $current_path/cvp-configuration/tempest/tempest_ext.conf
Oleksii Zhurbaba5883f2018-01-18 09:52:08 -0600100 rally verify configure-verifier --show
101 exit 0
102fi
103
Oleksii Zhurba1580fc52017-11-14 15:20:44 -0600104check_variables
105rally_configuration
Oleksii Zhurba0aa46702018-02-07 16:17:39 -0600106if [ -n "${TEMPEST_REPO}" ]; then
Oleksii Zhurba1580fc52017-11-14 15:20:44 -0600107 tempest_configuration
Oleksii Zhurbab9133f72017-11-15 17:53:02 -0600108 quick_configuration
Oleksii Zhurbac8058d62018-06-21 17:46:11 -0500109 rally verify configure-verifier --extend $current_path/cvp-configuration/tempest/tempest_ext.conf
Oleksii Zhurba7f3941b2018-03-27 14:38:42 -0500110 # Add 2 additional tempest tests (live migration to all nodes + ssh to all nodes)
111 # TBD
112 #cat tempest/test_extension.py >> repo/tempest/scenario/test_server_multinode.py
Oleksii Zhurba1580fc52017-11-14 15:20:44 -0600113fi
114set -e
115
Oleksii Zhurbac8058d62018-06-21 17:46:11 -0500116echo "Configuration is done!"