5bc8770bf177462d658fce53637025563c1449f3
[integration/csit.git] / scripts / sdc / start_sdc_containers.sh
1 #!/bin/bash
2 #
3 # ============LICENSE_START=======================================================
4 # ONAP CLAMP
5 # ================================================================================
6 # Copyright (C) 2017 AT&T Intellectual Property. All rights
7 #                             reserved.
8 # ================================================================================
9 # Licensed under the Apache License, Version 2.0 (the "License");
10 # you may not use this file except in compliance with the License.
11 # You may obtain a copy of the License at
12 #
13 # http://www.apache.org/licenses/LICENSE-2.0
14 #
15 # Unless required by applicable law or agreed to in writing, software
16 # distributed under the License is distributed on an "AS IS" BASIS,
17 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 # See the License for the specific language governing permissions and
19 # limitations under the License.
20 # ============LICENSE_END============================================
21 # ===================================================================
22 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
23 #
24
25 echo "This is ${WORKSPACE}/test/csit/scripts/sdc/start_sdc_containers.sh"
26
27 source ${WORKSPACE}/data/clone/sdc/version.properties
28 export RELEASE=$major.$minor-STAGING-latest
29 export DEP_ENV=$ENV_NAME
30 #[ -f /opt/config/nexus_username.txt ] && NEXUS_USERNAME=$(cat /opt/config/nexus_username.txt)    || NEXUS_USERNAME=release
31 #[ -f /opt/config/nexus_password.txt ] && NEXUS_PASSWD=$(cat /opt/config/nexus_password.txt)      || NEXUS_PASSWD=sfWU3DFVdBr7GVxB85mTYgAW
32 #[ -f /opt/config/nexus_docker_repo.txt ] && NEXUS_DOCKER_REPO=$(cat /opt/config/nexus_docker_repo.txt) || NEXUS_DOCKER_REPO=ecomp-nexus:${PORT}
33 #[ -f /opt/config/nexus_username.txt ] && docker login -u $NEXUS_USERNAME -p $NEXUS_PASSWD $NEXUS_DOCKER_REPO
34 export IP=$HOST_IP
35 #export PREFIX=${NEXUS_DOCKER_REPO}'/openecomp'
36 export PREFIX='nexus3.onap.org:10001/openecomp'
37
38
39 function monitor_docker {
40
41 echo monitor $1 Docker
42 sleep 5
43 TIME_OUT=800
44 INTERVAL=20
45 TIME=0
46 while [ "$TIME" -lt "$TIME_OUT" ]; do
47
48 MATCH=`docker logs --tail 30 $1 | grep "DOCKER STARTED"`
49 echo MATCH is -- $MATCH
50
51 if [ -n "$MATCH" ]
52  then
53     echo DOCKER start finished in $TIME seconds
54     break
55   fi
56
57   echo Sleep: $INTERVAL seconds before testing if $1 DOCKER is up. Total wait time up now is: $TIME seconds. Timeout is: $TIME_OUT seconds
58   sleep $INTERVAL
59   TIME=$(($TIME+$INTERVAL))
60 done
61
62 if [ "$TIME" -ge "$TIME_OUT" ]
63  then
64    echo -e "\e[1;31mTIME OUT: DOCKER was NOT fully started in $TIME_OUT seconds... Could cause problems ...\e[0m"
65 fi
66
67
68 }
69
70 #start Elastic-Search
71 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 1g --memory-swap=1g --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}
72
73 #start cassandra
74 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}
75
76 echo "please wait while CS is starting..."
77 monitor_docker sdc-cs
78
79
80 #start kibana
81 #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 --memory-swap=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}
82
83 #start sdc-backend
84 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 --memory-swap=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 ${PREFIX}/sdc-backend:${RELEASE}
85
86 echo "please wait while BE is starting..."
87 monitor_docker sdc-BE
88
89 #start Front-End
90 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 --memory 2g --memory-swap=2g --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}
91
92 echo "docker run sdc-frontend..."
93 monitor_docker sdc-FE
94
95 echo " WAIT 1 minutes maximum and test every 5 seconds if SDC up using HealthCheck API...."
96
97 TIME_OUT=60
98 INTERVAL=5
99 TIME=0
100 while [ "$TIME" -lt "$TIME_OUT" ]; do
101   response=$(curl --write-out '%{http_code}' --silent --output /dev/null http://localhost:8080/sdc2/rest/healthCheck); echo $response
102
103   if [ "$response" == "200" ]; then
104     echo SDC well started in $TIME seconds
105     break;
106   fi
107
108   echo Sleep: $INTERVAL seconds before testing if SDC is up. Total wait time up now is: $TIME seconds. Timeout is: $TIME_OUT seconds
109   sleep $INTERVAL
110   TIME=$(($TIME+$INTERVAL))
111 done
112
113 if [ "$TIME" -ge "$TIME_OUT" ]; then
114    echo TIME OUT: Docker containers not started in $TIME_OUT seconds... Could cause problems for tests...
115 fi
116