Create script to run yardstick 41/61641/7
authorFatih Degirmenci <fdegir@gmail.com>
Fri, 31 Aug 2018 10:04:40 +0000 (12:04 +0200)
committerFatih Degirmenci <fdegir@gmail.com>
Tue, 4 Sep 2018 17:03:01 +0000 (19:03 +0200)
The created script runs the yardstick in similar way the functest
script does.

installer-type:osa
deploy-scenario:os-nosdn-nofeature

Change-Id: Ic03445ec03fcfec8dc0d09f638e7cb1187fef883
Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
xci/playbooks/roles/prepare-tests/tasks/main.yml
xci/playbooks/roles/prepare-tests/templates/run-yardstick.sh.j2 [new file with mode: 0644]

index b75965d..1512bba 100644 (file)
@@ -57,3 +57,9 @@
     src: run-functest.sh.j2
     dest: /root/run-functest.sh
     mode: 0755
+
+- name: create the script to run yardstick
+  template:
+    src: run-yardstick.sh.j2
+    dest: /root/run-yardstick.sh
+    mode: 0755
diff --git a/xci/playbooks/roles/prepare-tests/templates/run-yardstick.sh.j2 b/xci/playbooks/roles/prepare-tests/templates/run-yardstick.sh.j2
new file mode 100644 (file)
index 0000000..5eaf7bd
--- /dev/null
@@ -0,0 +1,44 @@
+#!/bin/bash
+
+# Create directory to store yardstick logs
+mkdir -p /root/yardstick-results/
+
+# Dump the env file
+echo "------------------------------------------------------"
+echo "------------- yardstick environment file --------------"
+cat /root/env
+echo "------------------------------------------------------"
+
+# we need to ensure the necessary environment variables are sourced
+source /root/env
+
+{% if 'os-' in deploy_scenario %}
+{# stuff needed for OpenStack based scenarios #}
+OS_CACERT="/etc/ssl/certs/xci.crt"
+DOCKER_IMAGE_NAME="opnfv/yardstick"
+YARDSTICK_SCENARIO_SUITE_NAME="opnfv_${DEPLOY_SCENARIO}_daily.yaml"
+
+# add OS_CACERT to openrc
+echo "export OS_CACERT=$OS_CACERT" >> ~/openrc
+
+opts="--privileged=true --rm"
+envs="-e INSTALLER_TYPE=$INSTALLER_TYPE -e INSTALLER_IP=$INSTALLER_IP \
+    -e NODE_NAME=$NODE_NAME -e EXTERNAL_NETWORK=$EXTERNAL_NETWORK \
+    -e YARDSTICK_BRANCH=master -e BRANCH=master \
+    -e DEPLOY_SCENARIO=$DEPLOY_SCENARIO -e CI_DEBUG=true"
+rc_file_vol="-v /root/openrc:/etc/yardstick/openstack.creds"
+cacert_file_vol="-v $OS_CACERT:/etc/yardstick/os_cacert"
+map_log_dir="-v /root/yardstick-results:/tmp/yardstick"
+sshkey="-v /root/.ssh/id_rsa:/root/.ssh/id_rsa"
+cmd="sudo docker run ${opts} ${envs} ${rc_file_vol} ${cacert_file_vol} \
+    ${map_log_dir} ${sshkey} ${DOCKER_IMAGE_NAME} \
+    exec_tests.sh ${YARDSTICK_SCENARIO_SUITE_NAME}"
+echo "Running yardstick with the command"
+echo "------------------------------------------------------"
+echo $cmd
+echo "------------------------------------------------------"
+$cmd
+{% else %}
+{# stuff needed for Kubernetes based scenarios #}
+    echo "Kubernetes testing is not enabled"
+{% endif %}