Fix docker_run.sh script
[sdc.git] / sdc-os-chef / scripts / docker_run.sh
1 #!/bin/bash
2
3 #
4 # Constants:
5 #
6
7 WORKSPACE="${WORKSPACE:-}"
8 SUCCESS=0
9 FAILURE=1
10
11 CS_PASSWORD="onap123#@!"
12 SDC_USER="asdc_user"
13 SDC_PASSWORD="Aa1234%^!"
14
15 JETTY_BASE="/var/lib/jetty"
16 SDC_CERT_DIR="onap/cert"
17
18 RELEASE=latest
19
20 LOCAL=false
21 BE_DEBUG_PORT="--publish 4000:4000"
22 FE_DEBUG_PORT="--publish 6000:6000"
23 ONBOARD_DEBUG_PORT="--publish 4001:4001"
24 CS_PORT=${CS_PORT:-9042}
25
26
27 # Java Options:
28 BE_JAVA_OPTIONS="-Xdebug -agentlib:jdwp=transport=dt_socket,address=4000,server=y,suspend=n -Xmx1536m -Xms1536m"
29 FE_JAVA_OPTIONS="-Xdebug -agentlib:jdwp=transport=dt_socket,address=6000,server=y,suspend=n -Xmx256m -Xms256m"
30 ONBOARD_BE_JAVA_OPTIONS="-Xdebug -agentlib:jdwp=transport=dt_socket,address=4001,server=y,suspend=n -Xmx1g -Xms1g"
31 SIM_JAVA_OPTIONS=" -Xmx128m -Xms128m -Xss1m -Dlog4j.configuration=file:///${JETTY_BASE}/config/sdc-simulator/log4j.properties"
32 API_TESTS_JAVA_OPTIONS="-Xmx512m -Xms512m"
33 UI_TESTS_JAVA_OPTIONS="-Xmx1024m -Xms1024m"
34 #Define this as variable, so it can be excluded in run commands on Docker for OSX, as /etc/localtime cant be mounted there.
35 LOCAL_TIME_MOUNT_CMD="--volume /etc/localtime:/etc/localtime:ro"
36 # If os is OSX, unset this, so /etc/localtime is not mounted, otherwise leave it be
37 if [[ "$OSTYPE" == "darwin"* ]]; then
38   LOCAL_TIME_MOUNT_CMD=""
39 fi
40
41
42 #
43 # Functions:
44 #
45
46
47 function usage {
48     echo "usage: docker_run.sh [ -r|--release <RELEASE-NAME> ] [ -e|--environment <ENV-NAME> ] [ -p|--port <Docker-hub-port>] [ -l|--local <Run-without-pull>] [ -sim|--simulator <Run-with-simulator>] [ -ta <run api tests with the supplied test suit>] [ -tu <run ui tests with the supplied test suit>] [ -ta <run api tests with the supplied test suit>] [ -tu <run ui tests with the supplied test suit>] [ -tad <run api tests with the default test suit>] [ -tu <run ui tests with the default test suit>] [ -h|--help ]"
49     echo "start dockers built locally example: docker_run.sh -l"
50     echo "start dockers built locally and simulator example: docker_run.sh -l -sim"
51     echo "start dockers, pull from onap nexus according to release and simulator example: docker_run.sh -r 1.5-STAGING-latest -sim"
52     echo "start dockers built locally and run api tests docker example: docker_run.sh -l -tad"
53     echo "start dockers built locally and run only the catalog be example: docker_run.sh -l -d sdc-BE "
54 }
55 #
56
57
58 function cleanup {
59     echo "Performing old dockers cleanup"
60
61         if [ "$1" == "all" ] ; then
62                 docker_ids=`docker ps -a | egrep "ecomp-nexus:${PORT}/sdc|sdc|Exit}|dcae" | awk '{print $1}'`
63                 for X in ${docker_ids}
64                 do
65                         docker rm -f ${X}
66                 done
67         else
68             echo "performing $1 docker cleanup"
69             tmp=`docker ps -a -q --filter="name=$1"`
70             if [[ ! -z "$tmp" ]]; then
71                 docker rm -f ${tmp}
72         fi
73         fi
74 }
75 #
76
77
78 function dir_perms {
79     mkdir -p ${WORKSPACE}/data/logs/BE/SDC/SDC-BE
80     mkdir -p ${WORKSPACE}/data/logs/FE/SDC/SDC-FE
81     mkdir -p ${WORKSPACE}/data/logs/sdc-api-tests/ExtentReport
82     mkdir -p ${WORKSPACE}/data/logs/ONBOARD/SDC/ONBOARD-BE
83     mkdir -p ${WORKSPACE}/data/logs/sdc-api-tests/target
84     mkdir -p ${WORKSPACE}/data/logs/sdc-ui-tests/ExtentReport
85     mkdir -p ${WORKSPACE}/data/logs/sdc-ui-tests/target
86     mkdir -p ${WORKSPACE}/data/logs/docker_logs
87     mkdir -p ${WORKSPACE}/data/logs/WS
88     echo "Creating dir '${WORKSPACE}/data/${SDC_CERT_DIR}'"
89     mkdir -p ${WORKSPACE}/data/${SDC_CERT_DIR}
90     chmod -R 777 ${WORKSPACE}/data/logs
91 }
92 #
93
94
95 function docker_logs {
96     docker logs $1 > ${WORKSPACE}/data/logs/docker_logs/$1_docker.log
97 }
98 #
99
100
101 #
102 # Readiness Prob
103 #
104
105 function ready_probe {
106     docker exec $1 /var/lib/ready-probe.sh > /dev/null 2>&1
107     rc=$?
108     if [[ ${rc} == 0 ]]; then
109         echo DOCKER $1 start finished in $2 seconds
110         return ${SUCCESS}
111     fi
112     return ${FAILURE}
113 }
114 #
115
116
117 function probe_docker {
118     MATCH=`docker logs --tail 30 $1 | grep "DOCKER STARTED"`
119     echo MATCH is -- ${MATCH}
120
121     if [ -n "$MATCH" ] ; then
122         echo DOCKER start finished in $2 seconds
123         return ${SUCCESS}
124     fi
125     return ${FAILURE}
126 }
127 #
128
129 function probe_test_docker {
130     # This expected logging should be output by startup.sh of the
131     # respective test docker container
132     MATCH=`docker logs --tail 30 $1 | grep "Startup completed successfully"`
133     echo MATCH is -- ${MATCH}
134
135     if [ -n "$MATCH" ] ; then
136         echo TEST DOCKER start finished in $2 seconds
137         return ${SUCCESS}
138     fi
139     return ${FAILURE}
140 }
141 #
142
143
144 function probe_es {
145     health_Check_http_code=$(curl --noproxy "*" -o /dev/null -w '%{http_code}' http://${IP}:9200/_cluster/health?wait_for_status=yellow&timeout=120s)
146     if [[ "$health_Check_http_code" -eq 200 ]] ; then
147         echo DOCKER start finished in $1 seconds
148         return ${SUCCESS}
149     fi
150     return ${FAILURE}
151 }
152 #
153
154
155 function probe_sim {
156     if lsof -Pi :8285 -sTCP:LISTEN -t >/dev/null ; then
157         echo "Already running"
158         return ${SUCCESS}
159     else
160         echo "Not running"
161         return ${FAILURE}
162     fi
163 }
164 #
165
166
167 function monitor_docker {
168     DOCKER_NAME=$1
169     echo "Monitor ${DOCKER_NAME} Docker"
170     sleep 5
171     TIME_OUT=900
172     INTERVAL=20
173     TIME=0
174
175     while [ "$TIME" -lt "$TIME_OUT" ]; do
176
177         case ${DOCKER_NAME} in
178
179             sdc-cs)
180                 ready_probe ${DOCKER_NAME} ${TIME} ;
181                 status=$? ;
182             ;;
183             sdc-BE)
184                 ready_probe ${DOCKER_NAME} ${TIME} ;
185                 status=$? ;
186             ;;
187             sdc-FE)
188                 ready_probe ${DOCKER_NAME} ${TIME} ;
189                 status=$? ;
190             ;;
191             sdc-onboard-BE)
192                 ready_probe ${DOCKER_NAME} ${TIME} ;
193                 status=$? ;
194             ;;
195             sdc-api-tests)
196                 probe_test_docker ${DOCKER_NAME} ${TIME};
197                 status=$? ;
198             ;;
199             sdc-ui-tests)
200                 probe_test_docker ${DOCKER_NAME} ${TIME};
201                 status=$? ;
202             ;;
203             *)
204                 probe_docker ${DOCKER_NAME} ${TIME};
205                 status=$? ;
206             ;;
207
208         esac
209
210         if [[ ${status} == ${SUCCESS} ]] ; then
211             break;
212         fi
213
214         echo "Sleep: ${INTERVAL} seconds before testing if ${DOCKER_NAME} DOCKER is up. Total wait time up now is: ${TIME} seconds. Timeout is: ${TIME_OUT} seconds"
215         sleep ${INTERVAL}
216         TIME=$(($TIME+$INTERVAL))
217     done
218
219     docker_logs ${DOCKER_NAME}
220
221     if [ "$TIME" -ge "$TIME_OUT" ]; then
222         echo -e "\e[1;31mTIME OUT: DOCKER was NOT fully started in $TIME_OUT seconds... Could cause problems ...\e[0m"
223     fi
224 }
225 #
226
227 # healthCheck script used the secure connection to send request (https is always turn on)
228 function healthCheck {
229         curl --noproxy "*" ${IP}:9200/_cluster/health?pretty=true
230
231         echo "BE Health Check:"
232         curl -k --noproxy "*" https://${IP}:8443/sdc2/rest/healthCheck
233
234         echo ""
235         echo ""
236         echo "FE Health Check:"
237         curl -k --noproxy "*" https://${IP}:9443/sdc1/rest/healthCheck
238
239
240         echo ""
241         echo ""
242         healthCheck_http_code=$(curl -k --noproxy "*" -o /dev/null -w '%{http_code}' -H "Accept: application/json" -H "Content-Type: application/json" -H "USER_ID: jh0003" https://${IP}:8443/sdc2/rest/v1/user/demo;)
243         if [[ ${healthCheck_http_code} != 200 ]]; then
244                 echo "Error [${healthCheck_http_code}] while checking existence of user"
245                 return ${healthCheck_http_code}
246         fi
247         echo "check user existence: OK"
248         return ${healthCheck_http_code}
249 }
250 #
251
252
253 function command_exit_status {
254     status=$1
255     docker=$2
256     if [ "${status}" != "0" ] ; then
257         echo "[  ERROR  ] Docker ${docker} run command exit with status [${status}]"
258     fi
259 }
260 #
261
262
263 #
264 # Run Containers
265 #
266
267
268 #Cassandra
269 function sdc-cs {
270     DOCKER_NAME="sdc-cs"
271     echo "docker run sdc-cassandra..."
272     if [ ${LOCAL} = false ]; then
273         docker pull ${PREFIX}/sdc-cassandra:${RELEASE}
274     fi
275     docker run -dit --name ${DOCKER_NAME} --env RELEASE="${RELEASE}" --env CS_PASSWORD="${CS_PASSWORD}" --env ENVNAME="${DEP_ENV}" --env HOST_IP=${IP} --env MAX_HEAP_SIZE="1536M" --env HEAP_NEWSIZE="512M" --log-driver=json-file --log-opt max-size=100m --log-opt max-file=10 --ulimit memlock=-1:-1 --ulimit nofile=4096:100000 ${LOCAL_TIME_MOUNT_CMD} --volume ${WORKSPACE}/data/CS:/var/lib/cassandra --volume ${WORKSPACE}/data/environments:/root/chef-solo/environments --publish ${CS_PORT}:${CS_PORT} ${PREFIX}/sdc-cassandra:${RELEASE} /bin/sh
276     command_exit_status $? ${DOCKER_NAME}
277     echo "please wait while CS is starting..."
278     monitor_docker ${DOCKER_NAME}
279 }
280 #
281
282
283 #Cassandra-init
284 function sdc-cs-init {
285     DOCKER_NAME="sdc-cs-init"
286     echo "docker run sdc-cassandra-init..."
287     if [ ${LOCAL} = false ]; then
288         docker pull ${PREFIX}/sdc-cassandra-init:${RELEASE}
289     fi
290     docker run --name ${DOCKER_NAME} --env RELEASE="${RELEASE}" --env SDC_USER="${SDC_USER}" --env SDC_PASSWORD="${SDC_PASSWORD}" --env CS_PASSWORD="${CS_PASSWORD}" --env ENVNAME="${DEP_ENV}" --env HOST_IP=${IP} --log-driver=json-file --log-opt max-size=100m --log-opt max-file=10 --ulimit memlock=-1:-1 --ulimit nofile=4096:100000 ${LOCAL_TIME_MOUNT_CMD} --volume ${WORKSPACE}/data/CS:/var/lib/cassandra --volume ${WORKSPACE}/data/environments:/root/chef-solo/environments --volume ${WORKSPACE}/data/CS-Init:/root/chef-solo/cache ${PREFIX}/sdc-cassandra-init:${RELEASE} > /dev/null 2>&1
291     rc=$?
292     docker_logs ${DOCKER_NAME}
293     if [[ ${rc} != 0 ]]; then exit ${rc}; fi
294 }
295 #
296
297
298 #Onboard Cassandra-init
299 function sdc-cs-onboard-init {
300     DOCKER_NAME="sdc-cs-onboard-init"
301     echo "docker run sdc-cs-onboard-init..."
302     if [ ${LOCAL} = false ]; then
303         docker pull ${PREFIX}/sdc-onboard-cassandra-init:${RELEASE}
304     fi
305     docker run --name ${DOCKER_NAME} --env RELEASE="${RELEASE}" --env CS_HOST_IP=${IP} --env CS_HOST_PORT=${CS_PORT} --env SDC_USER="${SDC_USER}" --env SDC_PASSWORD="${SDC_PASSWORD}" --env CS_PASSWORD="${CS_PASSWORD}" --env ENVNAME="${DEP_ENV}" --log-driver=json-file --log-opt max-size=100m --log-opt max-file=10 --ulimit memlock=-1:-1 --ulimit nofile=4096:100000 ${LOCAL_TIME_MOUNT_CMD} --volume ${WORKSPACE}/data/CS:/var/lib/cassandra --volume ${WORKSPACE}/data/environments:/root/chef-solo/environments --volume ${WORKSPACE}/data/CS-Init:/root/chef-solo/cache ${PREFIX}/sdc-onboard-cassandra-init:${RELEASE}
306     rc=$?
307     docker_logs ${DOCKER_NAME}
308     if [[ ${rc} != 0 ]]; then exit ${rc}; fi
309 }
310 #
311
312
313 #Back-End
314 function sdc-BE {
315     DOCKER_NAME="sdc-BE"
316     echo "docker run sdc-backend..."
317     if [ ${LOCAL} = false ]; then
318         docker pull ${PREFIX}/sdc-backend:${RELEASE}
319     else
320         ADDITIONAL_ARGUMENTS=${BE_DEBUG_PORT}
321     fi
322     docker run --detach --name ${DOCKER_NAME} --env HOST_IP=${IP} --env ENVNAME="${DEP_ENV}" --env cassandra_ssl_enabled="false" --env JAVA_OPTIONS="${BE_JAVA_OPTIONS}" --log-driver=json-file --log-opt max-size=100m --log-opt max-file=10 --ulimit memlock=-1:-1 --ulimit nofile=4096:100000 ${LOCAL_TIME_MOUNT_CMD} --volume ${WORKSPACE}/data/logs/BE/:${JETTY_BASE}/logs  --volume ${WORKSPACE}/data/environments:/root/chef-solo/environments --publish 8443:8443 --publish 8080:8080 ${ADDITIONAL_ARGUMENTS} ${PREFIX}/sdc-backend:${RELEASE}
323     command_exit_status $? ${DOCKER_NAME}
324     echo "please wait while BE is starting..."
325     monitor_docker ${DOCKER_NAME}
326 }
327 #
328
329
330 # Back-End-Init
331 function sdc-BE-init {
332     DOCKER_NAME="sdc-BE-init"
333     echo "docker run sdc-backend-init..."
334     if [ ${LOCAL} = false ]; then
335         docker pull ${PREFIX}/sdc-backend-init:${RELEASE}
336     fi
337     docker run --name ${DOCKER_NAME} --env HOST_IP=${IP} --env ENVNAME="${DEP_ENV}" --log-driver=json-file --log-opt max-size=100m --log-opt max-file=10 --ulimit memlock=-1:-1 --ulimit nofile=4096:100000 ${LOCAL_TIME_MOUNT_CMD} --volume ${WORKSPACE}/data/logs/BE/:${JETTY_BASE}/logs  --volume ${WORKSPACE}/data/environments:/root/chef-solo/environments ${PREFIX}/sdc-backend-init:${RELEASE} > /dev/null 2>&1
338     rc=$?
339     docker_logs ${DOCKER_NAME}
340     if [[ ${rc} != 0 ]]; then exit ${rc}; fi
341 }
342 #
343
344
345 # Onboard Back-End
346 function sdc-onboard-BE {
347     DOCKER_NAME="sdc-onboard-BE"
348     echo "docker run  sdc-onboard-BE ..."
349 #    TODO Check the dir_perms action . do we need it here ??
350 #    dir_perms
351     if [ ${LOCAL} = false ]; then
352         docker pull ${PREFIX}/sdc-onboard-backend:${RELEASE}
353     else
354         ADDITIONAL_ARGUMENTS=${ONBOARD_DEBUG_PORT}
355     fi
356     docker run --detach --name ${DOCKER_NAME} --env HOST_IP=${IP} --env ENVNAME="${DEP_ENV}" --env cassandra_ssl_enabled="false" --env SDC_CLUSTER_NAME="SDC-CS-${DEP_ENV}" --env SDC_USER="${SDC_USER}" --env SDC_PASSWORD="${SDC_PASSWORD}" --env SDC_CERT_DIR="${SDC_CERT_DIR}" --env JAVA_OPTIONS="${ONBOARD_BE_JAVA_OPTIONS}" --log-driver=json-file --log-opt max-size=100m --log-opt max-file=10 --ulimit memlock=-1:-1 --ulimit nofile=4096:100000 ${LOCAL_TIME_MOUNT_CMD} --volume ${WORKSPACE}/data/${SDC_CERT_DIR}:${JETTY_BASE}/onap/cert --volume ${WORKSPACE}/data/logs/ONBOARD:${JETTY_BASE}/logs --volume ${WORKSPACE}/data/environments:/root/chef-solo/environments --publish 8445:8445 --publish 8081:8081 ${ADDITIONAL_ARGUMENTS} ${PREFIX}/sdc-onboard-backend:${RELEASE}
357     command_exit_status $? ${DOCKER_NAME}
358     echo "please wait while sdc-onboard-BE is starting..."
359     monitor_docker ${DOCKER_NAME}
360 }
361 #
362
363
364 # Front-End
365 function sdc-FE {
366     DOCKER_NAME="sdc-FE"
367     IMAGE_NAME="${PREFIX}/sdc-frontend:${RELEASE}"
368     echo "Running container '${DOCKER_NAME}' based on '${IMAGE_NAME}' image..."
369     if [ ${LOCAL} = false ]; then
370         docker pull ${PREFIX}/sdc-frontend:${RELEASE}
371     else
372         ADDITIONAL_ARGUMENTS=${FE_DEBUG_PORT}
373     fi
374
375     PLUGIN_CONFIG_FILE="${WORKSPACE}/data/environments/plugins-configuration.yaml"
376     if [[ -f ${WORKSPACE}/data/environments/plugins-configuration.yaml ]]; then
377         PLUGINS_CONF_VOLUME_MOUNT="--volume ${PLUGIN_CONFIG_FILE}:${JETTY_BASE}/config/catalog-fe/plugins-configuration.yaml"
378     else
379         echo "INFO: '${PLUGIN_CONFIG_FILE}' not provided, ignoring..."
380     fi
381
382     docker run \
383     --detach \
384     --name ${DOCKER_NAME} \
385     --env HOST_IP=${IP} \
386     --env ENVNAME="${DEP_ENV}" \
387     --env JAVA_OPTIONS="${FE_JAVA_OPTIONS}" \
388     --log-driver=json-file \
389     --log-opt max-size=100m \
390     --log-opt max-file=10 \
391     --ulimit memlock=-1:-1 \
392     --ulimit nofile=4096:100000 \
393     --volume ${WORKSPACE}/data/logs/FE/:${JETTY_BASE}/logs \
394     --volume ${WORKSPACE}/data/environments:/root/chef-solo/environments \
395     ${LOCAL_TIME_MOUNT_CMD}  \
396     ${PLUGINS_CONF_VOLUME_MOUNT} \
397     --publish 9443:9443 \
398     --publish 8181:8181 \
399     ${ADDITIONAL_ARGUMENTS} \
400     ${IMAGE_NAME}
401
402     command_exit_status $? ${DOCKER_NAME}
403     echo "Please wait while '${DOCKER_NAME}' container is starting..."
404     monitor_docker ${DOCKER_NAME}
405 }
406 #
407
408
409 # apis-sanity
410 function sdc-api-tests {
411     if [[ ${RUN_API_TESTS} = true ]] ; then
412         healthCheck
413         healthCheck_http_code=$?
414         if [[ ${healthCheck_http_code} == 200 ]] ; then
415             echo "docker run sdc-api-tests..."
416             echo "Trigger sdc-api-tests docker, please wait..."
417
418             if [ ${LOCAL} = false ]; then
419                 docker pull ${PREFIX}/sdc-api-tests:${RELEASE}
420             fi
421
422             docker run --detach --name sdc-api-tests --env HOST_IP=${IP} --env ENVNAME="${DEP_ENV}" --env JAVA_OPTIONS="${API_TESTS_JAVA_OPTIONS}" --env SUITE_NAME=${API_SUITE} --log-driver=json-file --log-opt max-size=100m --log-opt max-file=10 --ulimit memlock=-1:-1 --ulimit nofile=4096:100000 ${LOCAL_TIME_MOUNT_CMD} --volume ${WORKSPACE}/data/logs/sdc-api-tests/target:/var/lib/tests/target --volume ${WORKSPACE}/data/logs/sdc-api-tests/ExtentReport:/var/lib/tests/ExtentReport --volume ${WORKSPACE}/data/logs/sdc-api-tests/outputCsar:/var/lib/tests/outputCsar --volume ${WORKSPACE}/data/environments:/root/chef-solo/environments --volume ${WORKSPACE}/data/${SDC_CERT_DIR}:/var/lib/tests/cert --publish 9560:9560 ${PREFIX}/sdc-api-tests:${RELEASE} echo "please wait while SDC-API-TESTS is starting....."
423             monitor_docker sdc-api-tests
424         fi
425     fi
426 }
427 #
428
429
430 # ui-sanity
431 function sdc-ui-tests {
432
433     if [[ ${RUN_UI_TESTS} = true ]] ; then
434                 healthCheck
435         healthCheck_http_code=$?
436         if [[ ${healthCheck_http_code} == 200 ]]; then
437             echo "docker run sdc-ui-tets..."
438             echo "Trigger sdc-ui-tests docker, please wait..."
439
440             if [ ${LOCAL} = false ]; then
441                 docker pull ${PREFIX}/sdc-ui-tests:${RELEASE}
442             fi
443             RUN_SIMULATOR=true;
444             sdc-sim
445             docker run --detach --name sdc-ui-tests --env HOST_IP=${IP} --env ENVNAME="${DEP_ENV}" --env JAVA_OPTIONS="${UI_TESTS_JAVA_OPTIONS}" --env SUITE_NAME=${UI_SUITE} --log-driver=json-file --log-opt max-size=100m --log-opt max-file=10 --ulimit memlock=-1:-1 --ulimit nofile=4096:100000 ${LOCAL_TIME_MOUNT_CMD} --volume ${WORKSPACE}/data/logs/sdc-ui-tests/target:/var/lib/tests/target --volume ${WORKSPACE}/data/logs/sdc-ui-tests/ExtentReport:/var/lib/tests/ExtentReport --volume ${WORKSPACE}/data/environments:/root/chef-solo/environments --publish 5901:5901 --publish 6901:6901 ${PREFIX}/sdc-ui-tests:${RELEASE}
446             echo "please wait while SDC-UI-TESTS is starting....."
447             monitor_docker sdc-ui-tests
448         fi
449     fi
450 }
451 #
452
453
454 # SDC-Simulator
455 function sdc-sim {
456     if [ "${RUN_SIMULATOR}" == true ]; then
457         echo "docker run sdc-webSimulator..."
458         if [ ${LOCAL} = false ]; then
459             docker pull ${PREFIX}/sdc-simulator:${RELEASE}
460         fi
461
462         probe_sim
463         sim_stat=$?
464         if [ ${sim_stat} == 1 ]; then
465             docker run \
466                 --detach \
467                 --name sdc-sim \
468                 --env FE_URL="${FE_URL}" \
469                 --env JAVA_OPTIONS="${SIM_JAVA_OPTIONS}" \
470                 --env ENVNAME="${DEP_ENV}" \
471                 ${LOCAL_TIME_MOUNT_CMD} \
472                 --volume ${WORKSPACE}/data/logs/WS/:${JETTY_BASE}/logs \
473                 --volume ${WORKSPACE}/data/environments:/root/chef-solo/environments \
474                 --publish 8285:8080 \
475                 --publish 8286:8443 ${PREFIX}/sdc-simulator:${RELEASE}
476             echo "please wait while SDC-WEB-SIMULATOR is starting....."
477             monitor_docker sdc-sim
478         fi
479     fi
480 }
481 #
482
483
484 #
485 # Main
486 #
487
488 # Handle command line arguments
489 while [ $# -gt 0 ]; do
490     case $1 in
491
492         # -r | --release - The specific docker version to pull and deploy
493     -r | --release )
494           shift 1 ;
495           RELEASE=$1;
496           shift 1;;
497
498         # -e | --environment - The environment name you want to deploy
499     -e | --environment )
500           shift 1;
501           DEP_ENV=$1;
502           shift 1 ;;
503
504         # -p | --port - The port from which to connect to the docker nexus
505     -p | --port )
506           shift 1 ;
507           PORT=$1;
508           shift 1 ;;
509
510         # -l | --local - Use this for deploying your local dockers without pulling them first
511     -l | --local )
512           LOCAL=true;
513           shift 1;;
514
515         # -ta - Use this for running the APIs sanity docker after all other dockers have been deployed
516     -ta  )
517           shift 1 ;
518           API_SUITE=$1;
519           RUN_API_TESTS=true;
520           shift 1 ;;
521
522         # -tu - Use this for running the UI sanity docker after all other dockers have been deployed
523     -tu  )
524           shift 1 ;
525               UI_SUITE=$1;
526           RUN_UI_TESTS=true;
527           shift 1 ;;
528
529     # -tad - Use this for running the DEFAULT suite of tests in APIs sanity docker after all other dockers have been deployed
530     -tad | -t )
531           API_SUITE="onapApiSanity";
532           RUN_API_TESTS=true;
533           shift 1 ;;
534
535         # -tud - Use this for running the DEFAULT suite of tests in UI sanity docker after all other dockers have been deployed
536     -tud   )
537           UI_SUITE="onapUiSanity";
538           RUN_UI_TESTS=true;
539           shift 1 ;;
540
541     # -d | --docker - The init specified docker
542     -d | --docker )
543           shift 1 ;
544           DOCKER=$1;
545           shift 1 ;;
546     # -sim | --simulator run the simulator
547     -sim | --simulator )
548           RUN_SIMULATOR=true;
549           shift 1 ;;
550     # -sim | --simulator run the simulator
551     -u | --fe_url )
552           shift 1 ;
553           FE_URL=$1;
554           shift 1 ;;
555
556         # -h | --help - Display the help message with all the available run options
557     -h | --help )
558           usage;
559           exit  ${SUCCESS};;
560
561          * )
562           usage;
563           exit  ${FAILURE};;
564     esac
565 done
566
567
568 #Prefix those with WORKSPACE so it can be set to something other than /opt
569 [ -f ${WORKSPACE}/opt/config/env_name.txt ] && DEP_ENV=$(cat ${WORKSPACE}/opt/config/env_name.txt) || echo ${DEP_ENV}
570 [ -f ${WORKSPACE}/opt/config/nexus_username.txt ] && NEXUS_USERNAME=$(cat ${WORKSPACE}/opt/config/nexus_username.txt)    || NEXUS_USERNAME=release
571 [ -f ${WORKSPACE}/opt/config/nexus_password.txt ] && NEXUS_PASSWD=$(cat ${WORKSPACE}/opt/config/nexus_password.txt)      || NEXUS_PASSWD=sfWU3DFVdBr7GVxB85mTYgAW
572 [ -f ${WORKSPACE}/opt/config/nexus_docker_repo.txt ] && NEXUS_DOCKER_REPO=$(cat ${WORKSPACE}/opt/config/nexus_docker_repo.txt) || NEXUS_DOCKER_REPO=nexus3.onap.org:${PORT}
573 [ -f ${WORKSPACE}/opt/config/nexus_username.txt ] && docker login -u $NEXUS_USERNAME -p $NEXUS_PASSWD $NEXUS_DOCKER_REPO
574
575
576 export IP=`ip route get 8.8.8.8 | awk '/src/{ print $7 }'`
577 #If OSX, then use this to get IP
578 if [[ "$OSTYPE" == "darwin"* ]]; then
579     export IP=$(ipconfig getifaddr en0)
580 fi
581 export PREFIX=${NEXUS_DOCKER_REPO}'/onap'
582
583 if [ ${LOCAL} = true ]; then
584         PREFIX='onap'
585 fi
586
587 echo ""
588
589 if [ -z "${DOCKER}" ]; then
590     cleanup all
591     dir_perms
592     sdc-cs
593     sdc-cs-init
594     sdc-cs-onboard-init
595     sdc-onboard-BE
596     sdc-BE
597     sdc-BE-init
598     sdc-FE
599     healthCheck
600     sdc-sim
601     sdc-api-tests
602     sdc-ui-tests
603 else
604     cleanup ${DOCKER}
605     dir_perms
606     ${DOCKER}
607     healthCheck
608 fi