Added search, DR, ML, ES services.
[aai/test-config.git] / deploy_vm2.sh
index 305a2b2..d890528 100755 (executable)
@@ -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';
-