summaryrefslogtreecommitdiffstats
path: root/docs/templates
AgeCommit message (Expand)AuthorFilesLines
2017-03-05Update Templates for TestingShubhamRathi5-0/+0
2017-02-20Adjusted titlesSofia Wallin11-59/+320
2017-01-31Misc ChangesShubhamRathi5-1/+1
2017-01-30Moving design/ requirements/ to developerShubhamRathi4-2/+2
2017-01-30Cleanup old templates and add placeholders where requiredShubhamRathi4-2/+5
2017-01-22Adding all templates under templates/ShubhamRathi13-0/+676
2016-11-24Adjusted the docs repo structure for D release workSofia Wallin5-788/+0
2016-02-03Adding new projects content and license information.ChristopherPrice2-0/+6
2015-12-18Fix Line Length etc for existing docsUli Kleber4-21/+49
2015-11-10Move documents to new directory structureAric Gardner1-0/+34
2015-07-24Add syntax highlighting for bash blocksAric Gardner1-1/+1
2015-04-23Documentation templates for:Jonas Bjurel4-4/+241
2015-04-20Updated docs/enable_docu_gen.rst to include the new updated scriptVictor Laza2-0/+12
2015-04-17Removed requirements/main.rst to rest if build-docu.sh skips missingsVictor Laza1-2/+2
2015-04-14First version of release-notes template.rstJonas Bjurel2-26/+241
2015-04-14First version of release-notes templateJonas Bjurel1-0/+256
span>pod_config} not found" exit 1 fi if [ ! -f ${cyclictest_context_file} ] ; then echo "file ${cyclictest_context_file} not found" exit 1 fi #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://10.2.117.21: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 = root password = root target = ${DISPATCHER_INFLUXDB_TARGET} EOF } #Function call to update yardstick conf file based on Job type if [ "$testType" == "daily" ];then updateConfDaily fi #Running cyclictest through yardstick yardstick -d task start ${cyclictest_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