diff options
author | dglFromAtt <dgl@research.att.com> | 2018-03-03 11:57:29 -0500 |
---|---|---|
committer | dglFromAtt <dgl@research.att.com> | 2018-03-03 11:58:11 -0500 |
commit | 62b8b1254aff20a874a2867fda42bbaf3bb1b193 (patch) | |
tree | 4de1e9de7723cc9b884e7ebcae3c223674be89ba /test/csit/scripts/dmaap-buscontroller/dmaapbc-launch.sh | |
parent | 10d984c3606b5c6a026dea4b9df0954d74d0a8d1 (diff) |
Initial CSIT framework for dmaap/buscontroller
Change-Id: I068ccaafbeeea0d08949e83cccac56a238901aa3
Signed-off-by: dglFromAtt <dgl@research.att.com>
Issue-ID: DMAAP-318
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 + + +} |