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