diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-03-07 17:12:21 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-03-07 17:12:21 +0000 |
commit | 43cee066880eabe9745149c44aa96cd9a99d1e0e (patch) | |
tree | 254bc77a35ea9accc4b178d79a51c6649e69bbab /test/csit/scripts/dmaap-buscontroller/dmaapbc-launch.sh | |
parent | 952f9fa66b664d15f4a2b59e15f8e5e37ebee0ce (diff) | |
parent | 62b8b1254aff20a874a2867fda42bbaf3bb1b193 (diff) |
Merge "Initial CSIT framework for dmaap/buscontroller"
Diffstat (limited to 'test/csit/scripts/dmaap-buscontroller/dmaapbc-launch.sh')
-rwxr-xr-x | test/csit/scripts/dmaap-buscontroller/dmaapbc-launch.sh | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/test/csit/scripts/dmaap-buscontroller/dmaapbc-launch.sh b/test/csit/scripts/dmaap-buscontroller/dmaapbc-launch.sh new file mode 100755 index 000000000..f8f8c24e0 --- /dev/null +++ b/test/csit/scripts/dmaap-buscontroller/dmaapbc-launch.sh @@ -0,0 +1,30 @@ +#!/bin/bash + +# script to launch DMaaP buscontroller docker container +# sets global var IP with assigned IP address + +function dmaapbc_launch() { + TAG=dmaap/buscontroller + CONTAINER_NAME=dmaapbc + IP="" + + cd ${WORKSPACE}/test/csit/scripts/dmaap-buscontroller + + TMP_CFG=/tmp/docker-databys-controller.conf + . ./onapCSIT.env > $TMP_CFG + docker run -d --name $CONTAINER_NAME -v $TMP_CFG:/opt/app/config/conf $TAG + IP=`get-instance-ip.sh ${CONTAINER_NAME}` + + # Wait for initialization + for i in {1..10}; do + curl -sS ${IP}:8080 && break + echo sleep $i + sleep $i + done + + set -x + ${WORKSPACE}/test/csit/scripts/dmaap-buscontroller/dmaapbc-init.sh ${IP} + set +x + + +} |