X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=utils%2Ftest%2Freporting%2Fdocker%2Freporting.sh;h=7fe97a88e9506869466029859d6aacaded227b8a;hb=43c4748c8be221b03c7b94059100cff0e0222a02;hp=d6b173ceb421897363f2087c4eda1b688dcedb66;hpb=488e028f74e588c979d31144c409c425b29cc6fd;p=releng.git diff --git a/utils/test/reporting/docker/reporting.sh b/utils/test/reporting/docker/reporting.sh index d6b173ceb..7fe97a88e 100755 --- a/utils/test/reporting/docker/reporting.sh +++ b/utils/test/reporting/docker/reporting.sh @@ -3,8 +3,8 @@ export PYTHONPATH="${PYTHONPATH}:." export CONFIG_REPORTING_YAML=./reporting.yaml -declare -a versions=(colorado master) -declare -a projects=(functest yardstick) +declare -a versions=(danube master) +declare -a projects=(functest storperf yardstick) project=$1 reporting_type=$2 @@ -30,6 +30,23 @@ cp -Rf js display # $1 | $2 # functest | status, vims, tempest # yardstick | +# storperf | + +function report_project() +{ + project=$1 + dir=$2 + type=$3 + echo "********************************" + echo " $project reporting " + echo "********************************" + python ./$dir/reporting-$type.py + if [ $? ]; then + echo "$project reporting $type...OK" + else + echo "$project reporting $type...KO" + fi +} if [ -z "$1" ]; then echo "********************************" @@ -52,6 +69,15 @@ if [ -z "$1" ]; then echo "********************************" python ./yardstick/reporting-status.py echo "Yardstick reporting status...OK" + + echo "********************************" + echo " Storperf reporting " + echo "********************************" + python ./storperf/reporting-status.py + echo "Storperf reporting status...OK" + + report_project "QTIP" "qtip" "status" + else if [ -z "$2" ]; then reporting_type="status" @@ -61,4 +87,16 @@ else echo "********************************" python ./$project/reporting-$reporting_type.py fi -mv display /usr/share/nginx/html +cp -r display /usr/share/nginx/html + + +# nginx config +cp /home/opnfv/utils/test/reporting/docker/nginx.conf /etc/nginx/conf.d/ +echo "daemon off;" >> /etc/nginx/nginx.conf + +# supervisor config +cp /home/opnfv/utils/test/reporting/docker/supervisor.conf /etc/supervisor/conf.d/ + +ln -s /usr/bin/nodejs /usr/bin/node + +cd pages && /bin/bash angular.sh