Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | # |
| 4 | # Run the testsuite for the passed tag. Valid tags are ete, health, closedloop, instantiate |
| 5 | # Please clean up logs when you are done... |
| 6 | # Note: Do not run multiple concurrent ete.sh as the --display is not parameterized and tests will collide |
| 7 | # |
| 8 | if [ "$1" == "" ];then |
Mandeep Khinda | c00c687 | 2017-10-26 17:46:43 +0000 | [diff] [blame] | 9 | echo "Usage: ete.sh [ health | ete | closedloop | instantiate | distribute ]" |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 10 | exit |
| 11 | fi |
| 12 | |
| 13 | export TAGS="-i $1" |
| 14 | export ETEHOME=/var/opt/OpenECOMP_ETE |
| 15 | export OUTPUT_FOLDER=ETE_$$ |
| 16 | |
| 17 | VARIABLEFILES="-V /share/config/vm_properties.py -V /share/config/integration_robot_properties.py -V /share/config/integration_preload_parameters.py" |
| 18 | VARIABLES="-v GLOBAL_BUILD_NUMBER:$$" |
| 19 | |
| 20 | #docker exec openecompete_container ${ETEHOME}/runTags.sh ${VARIABLEFILES} ${VARIABLES} -d /share/logs/${OUTPUT_FOLDER} ${TAGS} --display 88 |
| 21 | |
| 22 | POD=$(kubectl --namespace onap-robot get pods | sed 's/ .*//'| grep robot) |
Alexis de Talhouƫt | ec76c0c | 2017-11-30 14:37:02 -0500 | [diff] [blame] | 23 | kubectl --namespace onap-robot exec ${POD} -- ${ETEHOME}/runTags.sh ${VARIABLEFILES} ${VARIABLES} -d /share/logs/${OUTPUT_FOLDER} ${TAGS} --display 88 |