X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=deploy_vm2.sh;h=d8905289733fd70e7c7821c7b3d5883c14c35f6c;hb=1a1c85140d710f4e830c30dec66469c9e770e9a4;hp=305a2b2e84577a806affd7d79eddd13092235ec6;hpb=8f4b9fb1e082f7207a4c1b66b044f7f3910b3444;p=aai%2Ftest-config.git 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'; -