diff options
author | Ethan Lynn <ethanlynnl@vmware.com> | 2018-03-30 09:32:52 +0800 |
---|---|---|
committer | Ethan Lynn <ethanlynnl@vmware.com> | 2018-03-30 09:34:14 +0800 |
commit | c6470b4bc76a452d027497541d25bc1c76a4be47 (patch) | |
tree | 16cfb8720fa82793cc0d35fd586478c7619daae5 /test/csit/plans/multicloud/functionality1/setup.sh | |
parent | 197208bd19c5c25ef9af742145aec143c60ec0fe (diff) |
Add check_vim_capacity tests for multicloud
Add check_vim_capacity tests
Change-Id: Iacc1db4a191bde311fd064c6e84124b4aa3868da
Issue-ID: MULTICLOUD-166
Signed-off-by: Ethan Lynn <ethanlynnl@vmware.com>
Diffstat (limited to 'test/csit/plans/multicloud/functionality1/setup.sh')
-rwxr-xr-x | test/csit/plans/multicloud/functionality1/setup.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/csit/plans/multicloud/functionality1/setup.sh b/test/csit/plans/multicloud/functionality1/setup.sh index 993a39f68..479c21daf 100755 --- a/test/csit/plans/multicloud/functionality1/setup.sh +++ b/test/csit/plans/multicloud/functionality1/setup.sh @@ -20,7 +20,9 @@ source ${SCRIPTS}/common_functions.sh # start multivim-broker -docker run -d --name multivim-broker nexus3.onap.org:10001/onap/multicloud/framework +docker run -d --name multivim-vio nexus3.onap.org:10001/onap/multicloud/vio +docker run -d --name multivim-broker --link multivim-vio -e MSB_ADDR:multivim-vio -e MSB_ADDR:9004 nexus3.onap.org:10001/onap/multicloud/framework + BROKER_IP=`get-instance-ip.sh multivim-broker` for i in {1..50}; do curl -sS ${BROKER_IP}:9001 && break |