blob: a1ac28b146e55f5e4e1cd08f6aadc78167bf9a8d [file] [log] [blame]
Yuli Shlosberg939bee02017-09-20 12:00:32 +03001#!/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
25echo "This is ${WORKSPACE}/test/csit/scripts/sdc/start_sdc_containers.sh"
26
27
Yuli Shlosberg82330072017-09-27 22:42:51 +030028export RELEASE='1.1-STAGING-latest'
29export DEP_ENV=$ENV_NAME
Yuli Shlosberg939bee02017-09-20 12:00:32 +030030#[ -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
Yuli Shlosberg82330072017-09-27 22:42:51 +030034export IP=$HOST_IP
Yuli Shlosberg939bee02017-09-20 12:00:32 +030035#export PREFIX=${NEXUS_DOCKER_REPO}'/openecomp'
36export PREFIX='nexus3.onap.org:10001/openecomp'
37
38#start Elastic-Search
39docker 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}
40
41#start cassandra
42docker 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}
43
44echo "please wait while CS is starting..."
45echo ""
46c=120 # seconds to wait
47REWRITE="\e[25D\e[1A\e[K"
48while [ $c -gt 0 ]; do
49 c=$((c-1))
50 sleep 1
51 echo -e "${REWRITE}$c"
52done
53echo -e ""
54
55
56#start kibana
57docker 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}
58
59#start sdc-backend
60docker 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}
61
62echo "please wait while BE is starting..."
63echo ""
Yuli Shlosbergf8b83522017-10-01 21:03:05 +030064c=180 # seconds to wait
Yuli Shlosberg939bee02017-09-20 12:00:32 +030065REWRITE="\e[45D\e[1A\e[K"
66while [ $c -gt 0 ]; do
67 c=$((c-1))
68 sleep 1
69 echo -e "${REWRITE}$c"
70done
71echo -e ""
72
73#start Front-End
74docker 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}
75
76echo "please wait while FE is starting..."
77echo ""
Yuli Shlosbergf8b83522017-10-01 21:03:05 +030078c=160 # seconds to wait
Yuli Shlosberg939bee02017-09-20 12:00:32 +030079REWRITE="\e[45D\e[1A\e[K"
80while [ $c -gt 0 ]; do
81 c=$((c-1))
82 sleep 1
83 echo -e "${REWRITE}$c"
84done
85echo -e ""
86
Yuli Shlosberg82330072017-09-27 22:42:51 +030087# WAIT 5 minutes maximum and test every 5 seconds if SDC up using HealthCheck API
88echo " WAIT 5 minutes maximum and test every 5 seconds if SDC up using HealthCheck API...."
89
90TIME_OUT=600
91INTERVAL=5
92TIME=0
93while [ "$TIME" -lt "$TIME_OUT" ]; do
94 response=$(curl --write-out '%{http_code}' --silent --output /dev/null http://localhost:8080/sdc2/rest/healthCheck); echo $response
95
96 if [ "$response" == "200" ]; then
97 echo SDC well started in $TIME seconds
98 break;
99 fi
100
101 echo Sleep: $INTERVAL seconds before testing if SDC is up. Total wait time up now is: $TIME seconds. Timeout is: $TIME_OUT seconds
102 sleep $INTERVAL
103 TIME=$(($TIME+$INTERVAL))
104done
105
106if [ "$TIME" -ge "$TIME_OUT" ]; then
107 echo TIME OUT: Docker containers not started in $TIME_OUT seconds... Could cause problems for tests...
Yuli Shlosbergceee1e82017-10-10 13:42:23 +0300108fi
Yuli Shlosberg939bee02017-09-20 12:00:32 +0300109