aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/dmaap-buscontroller/dmaapbc-launch.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/dmaap-buscontroller/dmaapbc-launch.sh')
-rwxr-xr-xscripts/dmaap-buscontroller/dmaapbc-launch.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/scripts/dmaap-buscontroller/dmaapbc-launch.sh b/scripts/dmaap-buscontroller/dmaapbc-launch.sh
deleted file mode 100755
index 3e446d89..00000000
--- a/scripts/dmaap-buscontroller/dmaapbc-launch.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash
-
-# script to launch DMaaP buscontroller docker container
-# sets global var IP with assigned IP address
-
-function dmaapbc_launch() {
- export dmaap_prov_ip=$1
- export dmaap_mr_ip=$1
- cd ${WORKSPACE}/scripts/dmaap-buscontroller/docker-compose
- docker-compose -f docker-compose-bc.yml up -d
-
- sleep 10
-
- DMAAP_BC_IP=`get-instance-ip.sh dmaap-bc`
-
- source ${SCRIPTS}/common_functions.sh
- bypass_ip_adress ${DMAAP_BC_IP}
-
- # Wait for initialization
- for i in 1 2 3 4 5 6 7 8 9 10; do
- curl -sS ${DMAAP_BC_IP}:8080 && break
- echo sleep ${i}
- sleep ${i}
- done
-
-}