summaryrefslogtreecommitdiffstats
path: root/deploy_vm1.sh
diff options
context:
space:
mode:
authorVenkata Harish K Kajur <vk250x@att.com>2018-03-06 18:37:14 -0500
committerVenkata Harish K Kajur <vk250x@att.com>2018-03-07 09:01:24 -0500
commitd3eeb821e65e48295500a6d8ed52a7f73c8fe733 (patch)
tree6a6c252e7771cef2dbb1b76e2f394b14bf1c9b1f /deploy_vm1.sh
parent1647f970f55f1218c33b2664c85db8477e5d75c4 (diff)
Fix the accidental openecomp to onap
Change the files that referenced openecomp to onap Change the deploy vm 1 to look for a different phrase when start the microservice and update the application properties to have empty username and password for dmaap since the keys needs to be provided even if the values for them are empty Issue-ID: AAI-95 Issue-ID: AAI-96 Change-Id: Idf6e4050733d395397fdbf3b6b12dfaf6ed677b4 Signed-off-by: Venkata Harish K Kajur <vk250x@att.com>
Diffstat (limited to 'deploy_vm1.sh')
-rwxr-xr-xdeploy_vm1.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/deploy_vm1.sh b/deploy_vm1.sh
index c3e7166..9fbb2ae 100755
--- a/deploy_vm1.sh
+++ b/deploy_vm1.sh
@@ -159,10 +159,10 @@ fi;
chown -R $USER_ID:$USER_ID $RESOURCE_LOGS $TRAVERSAL_LOGS;
RESOURCES_CONTAINER_NAME=$($DOCKER_COMPOSE_CMD up -d aai-resources.api.simpledemo.onap.org 2>&1 | grep 'Creating' | grep -v 'volume' | grep -v 'network' | awk '{ print $2; }' | head -1);
-wait_for_container $RESOURCES_CONTAINER_NAME '0.0.0.0:8447';
+wait_for_container $RESOURCES_CONTAINER_NAME 'Resources Microservice Started';
GRAPH_CONTAINER_NAME=$($DOCKER_COMPOSE_CMD up -d aai-traversal.api.simpledemo.onap.org 2>&1 | grep 'Creating' | awk '{ print $2; }' | head -1);
-wait_for_container $GRAPH_CONTAINER_NAME '0.0.0.0:8446';
+wait_for_container $GRAPH_CONTAINER_NAME 'Traversal Microservice Started';
# Deploy haproxy and traversal and resources
$DOCKER_COMPOSE_CMD up -d aai.api.simpledemo.onap.org