Add support for ODL credentials that have changed
[integration.git] / test / csit / scripts / dmaap-buscontroller / dmaapbc-launch.sh
1 #!/bin/bash
2
3 # script to launch DMaaP buscontroller docker container
4 # sets global var IP with assigned IP address
5
6 function dmaapbc_launch() {
7         TAG="nexus3.onap.org:10001/onap/dmaap/buscontroller"
8         CONTAINER_NAME=dmaapbc
9         IP=""
10
11         cd ${WORKSPACE}/test/csit/scripts/dmaap-buscontroller
12
13         TMP_CFG=/tmp/docker-databus-controller.conf
14         . ./onapCSIT.env > $TMP_CFG
15         docker run -d --name $CONTAINER_NAME -v $TMP_CFG:/opt/app/config/conf $TAG
16         IP=`get-instance-ip.sh ${CONTAINER_NAME}`
17
18         # Wait for initialization
19         for i in {1..10}; do
20         curl -sS ${IP}:8080 && break
21         echo sleep $i
22         sleep $i
23         done
24
25 }