blob: 7e5498e765bed390bd85ba4ed1bb633fb23ba93b [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001#!/bin/bash
2
3
Grinberg Motic3bda482017-02-23 11:24:34 +02004function usage {
Idan Amitdb3d5542017-12-07 11:33:32 +02005 echo "usage: docker_run.sh [ -r|--release <RELEASE-NAME> ] [ -e|--environment <ENV-NAME> ] [ -p|--port <Docker-hub-port>] [ -l|--local <Run-without-pull>] [ -t|--runTests <Run-with-sanityDocker>] [ -h|--help ]"
Michael Lando451a3402017-02-19 10:28:42 +02006}
7
8
Grinberg Motic3bda482017-02-23 11:24:34 +02009function cleanup {
Idan Amitdb3d5542017-12-07 11:33:32 +020010 echo "performing old dockers cleanup"
11 docker_ids=`docker ps -a | egrep -v "openecomp/sdc-simulator" | egrep "ecomp-nexus:${PORT}/sdc|sdc|Exit" | awk '{print $1}'`
12 for X in ${docker_ids}
13 do
14 docker rm -f ${X}
15 done
Grinberg Motic3bda482017-02-23 11:24:34 +020016}
17
18
19function dir_perms {
Yuli Shlosbergd1bb2e52018-01-15 11:51:21 +020020 mkdir -p ${WORKSPACE}/data/logs/BE/SDC/SDC-BE
21 mkdir -p ${WORKSPACE}/data/logs/FE/SDC/SDC-FE
22 chmod -R 777 ${WORKSPACE}/data/logs
Grinberg Motic3bda482017-02-23 11:24:34 +020023}
24
Yuli Shlosberg5571a862017-10-03 18:18:51 +030025function monitor_docker {
26
Idan Amitdb3d5542017-12-07 11:33:32 +020027 echo monitor $1 Docker
28 sleep 5
29 TIME_OUT=900
30 INTERVAL=20
31 TIME=0
32 while [ "$TIME" -lt "$TIME_OUT" ]; do
Yuli Shlosberg5571a862017-10-03 18:18:51 +030033
Idan Amitdb3d5542017-12-07 11:33:32 +020034 MATCH=`docker logs --tail 30 $1 | grep "DOCKER STARTED"`
35 echo MATCH is -- $MATCH
Yuli Shlosberg5571a862017-10-03 18:18:51 +030036
Idan Amitdb3d5542017-12-07 11:33:32 +020037 if [ -n "$MATCH" ]; then
38 echo DOCKER start finished in $TIME seconds
39 break
40 fi
Yuli Shlosberg5571a862017-10-03 18:18:51 +030041
Idan Amitdb3d5542017-12-07 11:33:32 +020042 echo Sleep: $INTERVAL seconds before testing if $1 DOCKER is up. Total wait time up now is: $TIME seconds. Timeout is: $TIME_OUT seconds
43 sleep $INTERVAL
44 TIME=$(($TIME+$INTERVAL))
45 done
Yuli Shlosberg5571a862017-10-03 18:18:51 +030046
Idan Amitdb3d5542017-12-07 11:33:32 +020047 if [ "$TIME" -ge "$TIME_OUT" ]; then
48 echo -e "\e[1;31mTIME OUT: DOCKER was NOT fully started in $TIME_OUT seconds... Could cause problems ...\e[0m"
49 fi
Yuli Shlosberg5571a862017-10-03 18:18:51 +030050
51}
52
Yuli Shlosbergd1bb2e52018-01-15 11:51:21 +020053function healthCheck {
54 curl localhost:9200/_cluster/health?pretty=true
55
56 echo "BE health-Check:"
57 curl http://localhost:8080/sdc2/rest/healthCheck
58
59 echo ""
60 echo ""
61 echo "FE health-Check:"
62 curl http://localhost:8181/sdc1/rest/healthCheck
63
64
65 echo ""
66 echo ""
Tal Gitelmanf1927592018-01-29 17:24:56 +020067 healthCheck_http_code=$(curl -o /dev/null -w '%{http_code}' -H "Accept: application/json" -H "Content-Type: application/json" -H "USER_ID: jh0003" http://localhost:8080/sdc2/rest/v1/user/demo;)
Yuli Shlosbergd1bb2e52018-01-15 11:51:21 +020068 if [[ ${healthCheck_http_code} != 200 ]]
69 then
70 echo "Error [${healthCheck_http_code}] while user existance check"
71 return ${healthCheck_http_code}
72 fi
73 echo "check user existance: OK"
74 return ${healthCheck_http_code}
75}
76
Tal Gitelmanf1927592018-01-29 17:24:56 +020077function elasticHealthCheck {
78 echo "Elastic Health-Check:"
79
80 COUNTER=0
81 while [ $COUNTER -lt 20 ]; do
82 echo "Waiting ES docker to start"
83 health_Check_http_code=$(curl -o /dev/null -w '%{http_code}' http://localhost:9200/_cluster/health?wait_for_status=yellow&timeout=120s)
84 if [[ "$health_Check_http_code" -eq 200 ]]
85 then
86 break
87 fi
88 let COUNTER=COUNTER+1
89 sleep 4
90 done
91
92 healthCheck_http_code=$(curl -o /dev/null -w '%{http_code}' http://localhost:9200/_cluster/health?wait_for_status=yellow&timeout=120s)
93 if [[ "$health_Check_http_code" != 200 ]]
94 then
95 echo "Error [${healthCheck_http_code}] ES NOT started correctly"
96 exit ${healthCheck_http_code}
97 fi
98 echo "ES started correctly"
99 curl localhost:9200/_cluster/health?pretty=true
100 return ${healthCheck_http_code}
101}
102
Grinberg Moti97246212017-02-21 19:30:31 +0200103RELEASE=latest
Idan Amitc7f57ec2017-08-31 14:26:21 +0300104LOCAL=false
Yuli Shlosberg0566f582017-11-26 19:05:23 +0200105RUNTESTS=false
Tal Gitelman8e5fc512017-10-23 13:49:06 +0300106DEBUG_PORT="--publish 4000:4000"
Tal Gitelmane224d0b2017-10-17 15:24:25 +0300107
Idan Amitdb3d5542017-12-07 11:33:32 +0200108while [ $# -gt 0 ]; do
Michael Lando451a3402017-02-19 10:28:42 +0200109 case $1 in
Idan Amitdb3d5542017-12-07 11:33:32 +0200110 # -r | --release - The specific docker version to pull and deploy
Yuli Shlosberg0566f582017-11-26 19:05:23 +0200111 -r | --release )
112 shift 1 ;
113 RELEASE=$1;
114 shift 1;;
Idan Amitdb3d5542017-12-07 11:33:32 +0200115 # -e | --environment - The environment name you want to deploy
Yuli Shlosberg0566f582017-11-26 19:05:23 +0200116 -e | --environment )
117 shift 1;
118 DEP_ENV=$1;
119 shift 1 ;;
Idan Amitdb3d5542017-12-07 11:33:32 +0200120 # -p | --port - The port from which to connect to the docker nexus
Yuli Shlosberg0566f582017-11-26 19:05:23 +0200121 -p | --port )
122 shift 1 ;
123 PORT=$1;
124 shift 1 ;;
Idan Amitdb3d5542017-12-07 11:33:32 +0200125 # -l | --local - Use this for deploying your local dockers without pulling them first
Yuli Shlosberg0566f582017-11-26 19:05:23 +0200126 -l | --local )
127 LOCAL=true;
128 shift 1;;
Idan Amitdb3d5542017-12-07 11:33:32 +0200129 # -t | --runTests - Use this for running the sanity tests docker after all other dockers have been deployed
Yuli Shlosberg0566f582017-11-26 19:05:23 +0200130 -t | --runTests )
131 RUNTESTS=true;
132 shift 1 ;;
Idan Amitdb3d5542017-12-07 11:33:32 +0200133 # -h | --help - Display the help message with all the available run options
Yuli Shlosberg0566f582017-11-26 19:05:23 +0200134 -h | --help )
135 usage;
136 exit 0;;
137 * )
138 usage;
139 exit 1;;
Michael Lando451a3402017-02-19 10:28:42 +0200140 esac
Michael Lando451a3402017-02-19 10:28:42 +0200141done
142
Yuli Shlosberg3301bec2017-11-08 15:31:27 +0200143
Yuli Shlosberg316bb252017-11-14 11:47:17 +0200144[ -f /opt/config/env_name.txt ] && DEP_ENV=$(cat /opt/config/env_name.txt) || DEP_ENV=__ENV-NAME__
145[ -f /opt/config/nexus_username.txt ] && NEXUS_USERNAME=$(cat /opt/config/nexus_username.txt) || NEXUS_USERNAME=release
146[ -f /opt/config/nexus_password.txt ] && NEXUS_PASSWD=$(cat /opt/config/nexus_password.txt) || NEXUS_PASSWD=sfWU3DFVdBr7GVxB85mTYgAW
147[ -f /opt/config/nexus_docker_repo.txt ] && NEXUS_DOCKER_REPO=$(cat /opt/config/nexus_docker_repo.txt) || NEXUS_DOCKER_REPO=nexus3.onap.org:${PORT}
Michael Lando451a3402017-02-19 10:28:42 +0200148[ -f /opt/config/nexus_username.txt ] && docker login -u $NEXUS_USERNAME -p $NEXUS_PASSWD $NEXUS_DOCKER_REPO
149
150
Grinberg Motic3bda482017-02-23 11:24:34 +0200151cleanup
152
Michael Lando451a3402017-02-19 10:28:42 +0200153
Yuli Shlosbergd1bb2e52018-01-15 11:51:21 +0200154export IP=`ip route get 8.8.8.8 | awk '/src/{ print $7 }'`
Idan Amitdb3d5542017-12-07 11:33:32 +0200155export PREFIX=${NEXUS_DOCKER_REPO}'/onap'
Idan Amitc7f57ec2017-08-31 14:26:21 +0300156
157if [ ${LOCAL} = true ]; then
Idan Amitdb3d5542017-12-07 11:33:32 +0200158 PREFIX='onap'
Idan Amitc7f57ec2017-08-31 14:26:21 +0300159fi
Michael Lando451a3402017-02-19 10:28:42 +0200160
161echo ""
162
163# Elastic-Search
164echo "docker run sdc-elasticsearch..."
Idan Amitc7f57ec2017-08-31 14:26:21 +0300165if [ ${LOCAL} = false ]; then
166 echo "pulling code"
167 docker pull ${PREFIX}/sdc-elasticsearch:${RELEASE}
168fi
Tal Gitelmanf1927592018-01-29 17:24:56 +0200169docker run -dit --name sdc-es --env ENVNAME="${DEP_ENV}" --log-driver=json-file --log-opt max-size=100m --log-opt max-file=10 --memory 750m --env ES_JAVA_OPTS="-Xms512m -Xmx512m" --ulimit memlock=-1:-1 --ulimit nofile=4096:100000 --volume /etc/localtime:/etc/localtime:ro --env ES_HEAP_SIZE=1024M --volume ${WORKSPACE}/data/ES:/usr/share/elasticsearch/data --volume ${WORKSPACE}/data/environments:/root/chef-solo/environments --publish 9200:9200 --publish 9300:9300 ${PREFIX}/sdc-elasticsearch:${RELEASE} /bin/sh
170
171elasticHealthCheck
Yuli Shlosberg137cf5c2018-01-15 17:32:30 +0200172
Tal Gitelman38211c82018-01-24 17:59:53 +0200173# Init-Elastic-Search
174echo "docker run sdc-init-elasticsearch..."
175if [ ${LOCAL} = false ]; then
176 echo "pulling code"
177 docker pull ${PREFIX}/sdc-init-elasticsearch:${RELEASE}
178fi
Tal Gitelmanf1927592018-01-29 17:24:56 +0200179docker run --name sdc-init-es --env ENVNAME="${DEP_ENV}" --log-driver=json-file --log-opt max-size=100m --log-opt max-file=10 --memory 750m --ulimit memlock=-1:-1 --ulimit nofile=4096:100000 --volume /etc/localtime:/etc/localtime:ro --volume ${WORKSPACE}/data/environments:/root/chef-solo/environments ${PREFIX}/sdc-init-elasticsearch:${RELEASE}
180
181# Checking Elastic-Search-Init chef status
182if [ ! $? -eq 0 ]; then
183 echo "Elastic-Search Initialization failed"
184 exit $?
185fi
Idan Amitc7f57ec2017-08-31 14:26:21 +0300186
Tal Gitelman38211c82018-01-24 17:59:53 +0200187# Cassandra
Idan Amitc7f57ec2017-08-31 14:26:21 +0300188echo "docker run sdc-cassandra..."
189if [ ${LOCAL} = false ]; then
190 docker pull ${PREFIX}/sdc-cassandra:${RELEASE}
191fi
Yuli Shlosberg137cf5c2018-01-15 17:32:30 +0200192docker run --detach --name sdc-cs --env RELEASE="${RELEASE}" --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 --volume /etc/localtime:/etc/localtime:ro --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}
193
Michael Lando451a3402017-02-19 10:28:42 +0200194
195echo "please wait while CS is starting..."
Yuli Shlosberg5571a862017-10-03 18:18:51 +0300196monitor_docker sdc-cs
Michael Lando451a3402017-02-19 10:28:42 +0200197
Michael Lando451a3402017-02-19 10:28:42 +0200198# kibana
199echo "docker run sdc-kibana..."
Idan Amitc7f57ec2017-08-31 14:26:21 +0300200if [ ${LOCAL} = false ]; then
201 docker pull ${PREFIX}/sdc-kibana:${RELEASE}
202fi
Yuli Shlosberg137cf5c2018-01-15 17:32:30 +0200203docker run --detach --name sdc-kbn --env ENVNAME="${DEP_ENV}" --log-driver=json-file --log-opt max-size=100m --log-opt max-file=10 --ulimit memlock=-1:-1 --memory 2g --ulimit nofile=4096:100000 --volume /etc/localtime:/etc/localtime:ro --volume ${WORKSPACE}/data/environments:/root/chef-solo/environments --publish 5601:5601 ${PREFIX}/sdc-kibana:${RELEASE}
204
205
Michael Lando451a3402017-02-19 10:28:42 +0200206
Grinberg Motic3bda482017-02-23 11:24:34 +0200207dir_perms
Michael Lando451a3402017-02-19 10:28:42 +0200208
209# Back-End
210echo "docker run sdc-backend..."
Idan Amitc7f57ec2017-08-31 14:26:21 +0300211if [ ${LOCAL} = false ]; then
212 docker pull ${PREFIX}/sdc-backend:${RELEASE}
Tal Gitelmane224d0b2017-10-17 15:24:25 +0300213else
Tal Gitelman8e5fc512017-10-23 13:49:06 +0300214 ADDITIONAL_ARGUMENTS=${DEBUG_PORT}
Idan Amitc7f57ec2017-08-31 14:26:21 +0300215fi
Yuli Shlosberg137cf5c2018-01-15 17:32:30 +0200216docker run --detach --name sdc-BE --env HOST_IP=${IP} --env ENVNAME="${DEP_ENV}" --env http_proxy=${http_proxy} --env https_proxy=${https_proxy} --env no_proxy=${no_proxy} --log-driver=json-file --log-opt max-size=100m --log-opt max-file=10 --ulimit memlock=-1:-1 --memory 4g --ulimit nofile=4096:100000 --volume /etc/localtime:/etc/localtime:ro --volume ${WORKSPACE}/data/logs/BE/:/var/lib/jetty/logs --volume ${WORKSPACE}/data/environments:/root/chef-solo/environments --publish 8443:8443 --publish 8080:8080 ${ADDITIONAL_ARGUMENTS} ${PREFIX}/sdc-backend:${RELEASE}
217
218
Michael Lando451a3402017-02-19 10:28:42 +0200219
220echo "please wait while BE is starting..."
Yuli Shlosberg5571a862017-10-03 18:18:51 +0300221monitor_docker sdc-BE
Michael Lando451a3402017-02-19 10:28:42 +0200222
223
224# Front-End
225echo "docker run sdc-frontend..."
Idan Amitc7f57ec2017-08-31 14:26:21 +0300226if [ ${LOCAL} = false ]; then
227 docker pull ${PREFIX}/sdc-frontend:${RELEASE}
228fi
Yuli Shlosberg137cf5c2018-01-15 17:32:30 +0200229docker run --detach --name sdc-FE --env HOST_IP=${IP} --env ENVNAME="${DEP_ENV}" --env http_proxy=${http_proxy} --env https_proxy=${https_proxy} --env no_proxy=${no_proxy} --log-driver=json-file --log-opt max-size=100m --log-opt max-file=10 --ulimit memlock=-1:-1 --ulimit nofile=4096:100000 --volume /etc/localtime:/etc/localtime:ro --volume ${WORKSPACE}/data/logs/FE/:/var/lib/jetty/logs --volume ${WORKSPACE}/data/environments:/root/chef-solo/environments --publish 9443:9443 --publish 8181:8181 ${PREFIX}/sdc-frontend:${RELEASE}
Michael Lando451a3402017-02-19 10:28:42 +0200230
Yuli Shlosberg137cf5c2018-01-15 17:32:30 +0200231
232
233echo "please wait while FE is starting....."
Yuli Shlosberg5571a862017-10-03 18:18:51 +0300234monitor_docker sdc-FE
235
Yuli Shlosbergd1bb2e52018-01-15 11:51:21 +0200236# healthCheck
237healthCheck
Michael Lando451a3402017-02-19 10:28:42 +0200238
ml636r0649e652017-02-20 21:10:54 +0200239
Yuli Shlosberg9dde9262017-09-12 14:11:48 +0300240# sanityDocker
Yuli Shlosbergd1bb2e52018-01-15 11:51:21 +0200241if [[ (${RUNTESTS} = true) && (${healthCheck_http_code} == 200) ]]; then
Idan Amitdb3d5542017-12-07 11:33:32 +0200242 echo "docker run sdc-sanity..."
243 echo "Triger sanity docker, please wait..."
244
Yuli Shlosberg9dde9262017-09-12 14:11:48 +0300245 if [ ${LOCAL} = false ]; then
Idan Amitdb3d5542017-12-07 11:33:32 +0200246 docker pull ${PREFIX}/sdc-sanity:${RELEASE}
Yuli Shlosberg9dde9262017-09-12 14:11:48 +0300247 fi
Yuli Shlosberg316bb252017-11-14 11:47:17 +0200248
Yuli Shlosberg137cf5c2018-01-15 17:32:30 +0200249docker run --detach --name sdc-sanity --env HOST_IP=${IP} --env ENVNAME="${DEP_ENV}" --env http_proxy=${http_proxy} --env https_proxy=${https_proxy} --env no_proxy=${no_proxy} --log-driver=json-file --log-opt max-size=100m --log-opt max-file=10 --ulimit memlock=-1:-1 --memory 1500m --ulimit nofile=4096:100000 --volume /etc/localtime:/etc/localtime:ro --volume ${WORKSPACE}/data/logs/sdc-sanity/target:/var/lib/tests/target --volume ${WORKSPACE}/data/logs/sdc-sanity/ExtentReport:/var/lib/tests/ExtentReport --volume ${WORKSPACE}/data/logs/sdc-sanity/outputCsar:/var/lib/tests/outputCsar --volume ${WORKSPACE}/data/environments:/root/chef-solo/environments --publish 9560:9560 ${PREFIX}/sdc-sanity:${RELEASE}
250echo "please wait while SANITY is starting....."
Yuli Shlosbergd1bb2e52018-01-15 11:51:21 +0200251monitor_docker sdc-sanity
Yuli Shlosberg137cf5c2018-01-15 17:32:30 +0200252
Yuli Shlosberg316bb252017-11-14 11:47:17 +0200253fi