fix docker run
[sdc.git] / sdc-os-chef / scripts / docker_run.sh
1 #!/bin/bash
2
3
4 function usage {
5     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 ]"
6 }
7
8
9 function cleanup {
10     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
16 }
17
18
19 function dir_perms {
20     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
23 }
24
25 function monitor_docker {
26
27     echo monitor $1 Docker
28     sleep 5
29     TIME_OUT=900
30     INTERVAL=20
31     TIME=0
32     while [ "$TIME" -lt "$TIME_OUT" ]; do
33
34         MATCH=`docker logs --tail 30 $1 | grep "DOCKER STARTED"`
35         echo MATCH is -- $MATCH
36
37         if [ -n "$MATCH" ]; then
38             echo DOCKER start finished in $TIME seconds
39             break
40         fi
41
42         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
46
47     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
50
51 }
52
53 function 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 ""
67         healthCheck_http_code=$(curl -o out.html -w '%{http_code}' -H "Accept: application/json" -H "Content-Type: application/json" -H "USER_ID: jh0003" http://localhost:8080/sdc2/rest/v1/user/demo;)
68         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
77 RELEASE=latest
78 LOCAL=false
79 RUNTESTS=false
80 DEBUG_PORT="--publish 4000:4000"
81
82 while [ $# -gt 0 ]; do
83     case $1 in
84         # -r | --release - The specific docker version to pull and deploy
85     -r | --release )
86           shift 1 ;
87           RELEASE=$1;
88           shift 1;;
89         # -e | --environment - The environment name you want to deploy
90     -e | --environment )
91           shift 1;
92           DEP_ENV=$1;
93           shift 1 ;;
94         # -p | --port - The port from which to connect to the docker nexus
95     -p | --port )
96           shift 1 ;
97           PORT=$1;
98           shift 1 ;;
99         # -l | --local - Use this for deploying your local dockers without pulling them first
100     -l | --local )
101           LOCAL=true;
102           shift 1;;
103         # -t | --runTests - Use this for running the sanity tests docker after all other dockers have been deployed
104     -t | --runTests )
105           RUNTESTS=true;
106           shift 1 ;;
107         # -h | --help - Display the help message with all the available run options
108     -h | --help )
109           usage;
110           exit  0;;
111          * )
112           usage;
113           exit  1;;
114     esac
115 done
116
117
118 [ -f /opt/config/env_name.txt ] && DEP_ENV=$(cat /opt/config/env_name.txt) || DEP_ENV=__ENV-NAME__
119 [ -f /opt/config/nexus_username.txt ] && NEXUS_USERNAME=$(cat /opt/config/nexus_username.txt)    || NEXUS_USERNAME=release
120 [ -f /opt/config/nexus_password.txt ] && NEXUS_PASSWD=$(cat /opt/config/nexus_password.txt)      || NEXUS_PASSWD=sfWU3DFVdBr7GVxB85mTYgAW
121 [ -f /opt/config/nexus_docker_repo.txt ] && NEXUS_DOCKER_REPO=$(cat /opt/config/nexus_docker_repo.txt) || NEXUS_DOCKER_REPO=nexus3.onap.org:${PORT}
122 [ -f /opt/config/nexus_username.txt ] && docker login -u $NEXUS_USERNAME -p $NEXUS_PASSWD $NEXUS_DOCKER_REPO
123
124
125 cleanup
126
127
128 export IP=`ip route get 8.8.8.8 | awk '/src/{ print $7 }'`
129 export PREFIX=${NEXUS_DOCKER_REPO}'/openecomp'
130
131 if [ ${LOCAL} = true ]; then
132         PREFIX='openecomp'
133 fi
134
135 echo ""
136
137 # Elastic-Search
138 echo "docker run sdc-elasticsearch..."
139 if [ ${LOCAL} = false ]; then
140         echo "pulling code"
141         docker pull ${PREFIX}/sdc-elasticsearch:${RELEASE}
142 fi
143 docker run --detach --name sdc-es --env ENVNAME="${DEP_ENV}" --log-driver=json-file --log-opt max-size=100m --log-opt max-file=10 --memory 750m -e ES_JAVA_OPTS="-Xms512m -Xmx512m" --ulimit memlock=-1:-1 --ulimit nofile=4096:100000 --volume /etc/localtime:/etc/localtime:ro -e 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}
144
145
146 # cassandra
147 echo "docker run sdc-cassandra..."
148 if [ ${LOCAL} = false ]; then
149         docker pull ${PREFIX}/sdc-cassandra:${RELEASE}
150 fi
151 docker 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}
152
153
154 echo "please wait while CS is starting..."
155 monitor_docker sdc-cs
156
157 # kibana
158 echo "docker run sdc-kibana..."
159 if [ ${LOCAL} = false ]; then
160         docker pull ${PREFIX}/sdc-kibana:${RELEASE}
161 fi
162 docker 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}
163
164
165
166 dir_perms
167
168 # Back-End
169 echo "docker run sdc-backend..."
170 if [ ${LOCAL} = false ]; then
171         docker pull ${PREFIX}/sdc-backend:${RELEASE}
172 else
173         ADDITIONAL_ARGUMENTS=${DEBUG_PORT}
174 fi
175 docker 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}
176
177
178
179 echo "please wait while BE is starting..."
180 monitor_docker sdc-BE
181
182
183 # Front-End
184 echo "docker run sdc-frontend..."
185 if [ ${LOCAL} = false ]; then
186         docker pull ${PREFIX}/sdc-frontend:${RELEASE}
187 fi
188 docker 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}
189
190
191
192 echo "please wait while FE is starting....."
193 monitor_docker sdc-FE
194
195 # healthCheck
196 healthCheck
197
198
199 # sanityDocker
200 if [[ (${RUNTESTS} = true) && (${healthCheck_http_code} == 200) ]]; then
201     echo "docker run sdc-sanity..."
202     echo "Triger sanity docker, please wait..."
203         
204     if [ ${LOCAL} = false ]; then
205         docker pull ${PREFIX}/sdc-sanity:${RELEASE}
206     fi
207
208 docker 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}
209 echo "please wait while SANITY is starting....."
210 monitor_docker sdc-sanity
211
212 fi