blob: 54c3fb43c0ef2148f388d4cb41586282ae35d952 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
#!/bin/bash
###########################################################
## Invoking this script from ubuntu docker container runs
## cyclictest through yardstick
###########################################################
source utils.sh
HOST_IP=$( getHostIP )
pod_config='/opt/scripts/pod.yaml'
lmtest_context_file='/opt/migrate-node-context.yaml'
yardstick_prefix='/root/yardstick/yardstick/benchmark/scenarios/compute' # yardstick teardown path
if [ ! -f ${pod_config} ] ; then
echo "file ${pod_config} not found"
exit 1
fi
if [ ! -f ${lmtest_context_file} ] ; then
echo "file ${lmtest_context_file} not found"
exit 1
fi
#Execution of the post-execute script copied requires re-installation of yardstick
( cd /root/yardstick ; python setup.py install )
#setting up of image for launching guest vm.
ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null \
root@$HOST_IP "cp /root/images/guest1.qcow2 /root/"
#Updating the yardstick.conf file for daily
function updateConfDaily() {
DISPATCHER_TYPE=influxdb
DISPATCHER_FILE_NAME="/tmp/yardstick.out"
# Use the influxDB on the jumping server
DISPATCHER_INFLUXDB_TARGET="http://104.197.68.199:8086"
mkdir -p /etc/yardstick
cat << EOF > /etc/yardstick/yardstick.conf
[DEFAULT]
debug = True
dispatcher = ${DISPATCHER_TYPE}
[dispatcher_file]
file_name = ${DISPATCHER_FILE_NAME}
[dispatcher_influxdb]
timeout = 5
db_name = yardstick
username = opnfv
password = 0pnfv2015
target = ${DISPATCHER_INFLUXDB_TARGET}
EOF
}
#Function call to update yardstick conf file based on Job type
#if [ "$testType" == "daily" ];then
# updateConfDaily
#fi
#Running livemigration through yardstick
echo "Executing livemigration through yardstick"
yardstick -d task start ${lmtest_context_file}
output=$?
if [ "$testType" == "verify" ];then
chmod 777 /tmp/yardstick.out
cat /tmp/yardstick.out > /opt/yardstick.out
fi
if [ $output != 0 ];then
echo "Yardstick Failed !!!"
exit 1
fi
|