summaryrefslogtreecommitdiffstats
path: root/deploy_vm2.sh
diff options
context:
space:
mode:
Diffstat (limited to 'deploy_vm2.sh')
-rwxr-xr-xdeploy_vm2.sh22
1 files changed, 21 insertions, 1 deletions
diff --git a/deploy_vm2.sh b/deploy_vm2.sh
index 305a2b2..d890528 100755
--- a/deploy_vm2.sh
+++ b/deploy_vm2.sh
@@ -9,6 +9,9 @@ fi
export RESOURCES_LOGS="/opt/aai/logroot/AAI-RESOURCES";
export TRAVERSAL_LOGS="/opt/aai/logroot/AAI-TRAVERSAL";
+export SEARCH_LOGS="/opt/aai/logroot/AAI-SEARCH";
+export DATA-ROUTER_LOGS="/opt/aai/logroot/AAI-DATA-ROUTER";
+export MODEL-LOADER_LOGS="/opt/aai/logroot/AAI-MODEL-LOADER";
if [ ! -d "$RESOURCES_LOGS" ];
then
@@ -22,6 +25,24 @@ then
mkdir -p $TRAVERSAL_LOGS;
fi;
+if [ ! -d "$SEARCH_LOGS" ];
+then
+ echo "Warning: Unable to find the volume directory $SEARCH_LOGS so creating it as regular directory";
+ mkdir -p $SEARCH_LOGS;
+fi;
+
+if [ ! -d "$DATA-ROUTER_LOGS" ];
+then
+ echo "Warning: Unable to find the volume directory $DATA-ROUTER_LOGS so creating it as regular directory";
+ mkdir -p $DATA-ROUTER_LOGS;
+fi;
+
+if [ ! -d "$MODEL-LOADER_LOGS" ];
+then
+ echo "Warning: Unable to find the volume directory $MODEL-LOADER_LOGS so creating it as regular directory";
+ mkdir -p $MODEL-LOADER_LOGS;
+fi;
+
export MTU=${MTU:-1500};
export HBASE_IMAGE="${HBASE_IMAGE:-wc9368/aai-hbase-1.2.3}";
#export HBASE_IMAGE="${HBASE_IMAGE:-harisekhon/hbase}";
@@ -60,4 +81,3 @@ wait_for_container $HBASE_CONTAINER_NAME '^starting regionserver';
GREMLIN_CONTAINER_NAME=$($DOCKER_COMPOSE_CMD up -d aai.gremlinserver.simpledemo.openecomp.org 2>&1 | grep 'Creating' | awk '{ print $2; }' | head -1);
wait_for_container $GREMLIN_CONTAINER_NAME 'Channel started at port 8182';
-