blob: 42a766aa9be2834c98f0dd21bce37ce90c170aa9 [file] [log] [blame]
Venkata Harish K Kajur96f120c2017-09-07 22:09:25 -04001#!/bin/bash
2#
3# Copyright © 2017 AT&T Intellectual Property.
4# All rights reserved.
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#
18# ECOMP is a trademark and service mark of AT&T Intellectual Property.
19
20source ${SCRIPTS}/common_functions.sh
21
22NEXUS_USERNAME=$(cat /opt/config/nexus_username.txt)
23NEXUS_PASSWD=$(cat /opt/config/nexus_password.txt)
24NEXUS_DOCKER_REPO=$(cat /opt/config/nexus_docker_repo.txt)
25DOCKER_IMAGE_VERSION=$(cat /opt/config/docker_version.txt)
26DOCKER_REGISTRY=${NEXUS_DOCKER_REPO}
Venkata Harish K Kajurcbcc00c2017-09-09 20:30:04 -040027DOCKER_IMAGE_VERSION=1.1-STAGING-latest
Venkata Harish K Kajur96f120c2017-09-07 22:09:25 -040028
29function wait_for_container() {
30
31 CONTAINER_NAME="$1";
32 START_TEXT="$2";
33
Singhsumalee, Pete (ps2418)56bb06b2017-09-25 14:13:15 -050034 TIMEOUT=360
Venkata Harish K Kajur96f120c2017-09-07 22:09:25 -040035
36 # wait for the real startup
37 AMOUNT_STARTUP=$(docker logs ${CONTAINER_NAME} 2>&1 | grep "$START_TEXT" | wc -l)
38 while [[ ${AMOUNT_STARTUP} -ne 1 ]];
39 do
40 echo "Waiting for '$CONTAINER_NAME' deployment to finish ..."
41 AMOUNT_STARTUP=$(docker logs ${CONTAINER_NAME} 2>&1 | grep "$START_TEXT" | wc -l)
42 if [ "$TIMEOUT" = "0" ];
43 then
Venkata Harish K Kajurcbcc00c2017-09-09 20:30:04 -040044 docker logs ${CONTAINER_NAME};
Venkata Harish K Kajur96f120c2017-09-07 22:09:25 -040045 echo "ERROR: $CONTAINER_NAME deployment failed."
46 exit 1
47 fi
48 let TIMEOUT-=1
49 sleep 1
50 done
51}
52
53DOCKER_COMPOSE_CMD="docker-compose";
54export MTU=$(/sbin/ifconfig | grep MTU | sed 's/.*MTU://' | sed 's/ .*//' | sort -n | head -1);
55export DOCKER_REGISTRY="nexus3.onap.org:10001";
Venkata Harish K Kajurcbcc00c2017-09-09 20:30:04 -040056export AAI_HAPROXY_IMAGE="${AAI_HAPROXY_IMAGE:-aaionap/haproxy}";
Venkata Harish K Kajur70005762017-11-06 17:38:45 +000057export HAPROXY_VERSION="${HAPROXY_VERSION:-1.1.0}";
Venkata Harish K Kajurd6f0c1e2017-09-27 10:42:28 -040058export HBASE_IMAGE="${HBASE_IMAGE:-aaionap/hbase}";
59export HBASE_VERSION="${HBASE_VERSION:-1.2.0}";
60
61docker pull ${HBASE_IMAGE}:${HBASE_VERSION};
Venkata Harish K Kajur96f120c2017-09-07 22:09:25 -040062
Singhsumalee, Pete (ps2418)56bb06b2017-09-25 14:13:15 -050063docker pull ${HBASE_IMAGE}:${HBASE_VERSION};
Venkata Harish K Kajur96f120c2017-09-07 22:09:25 -040064docker pull ${DOCKER_REGISTRY}/openecomp/aai-resources:${DOCKER_IMAGE_VERSION};
65docker tag ${DOCKER_REGISTRY}/openecomp/aai-resources:${DOCKER_IMAGE_VERSION} ${DOCKER_REGISTRY}/openecomp/aai-resources:latest;
66
67docker pull ${DOCKER_REGISTRY}/openecomp/aai-traversal:${DOCKER_IMAGE_VERSION};
68docker tag ${DOCKER_REGISTRY}/openecomp/aai-traversal:${DOCKER_IMAGE_VERSION} ${DOCKER_REGISTRY}/openecomp/aai-traversal:latest;
69
70${DOCKER_COMPOSE_CMD} stop
71${DOCKER_COMPOSE_CMD} rm -f -v
72
73# Start the hbase where the data will be stored
74HBASE_CONTAINER_NAME=$(${DOCKER_COMPOSE_CMD} up -d aai.hbase.simpledemo.openecomp.org 2>&1 | grep 'Creating' | grep -v 'volume' | grep -v 'network' | awk '{ print $2; }' | head -1);
75wait_for_container ${HBASE_CONTAINER_NAME} ' Started SelectChannelConnector@0.0.0.0:8085';
76wait_for_container ${HBASE_CONTAINER_NAME} ' Started SelectChannelConnector@0.0.0.0:8080';
77wait_for_container ${HBASE_CONTAINER_NAME} ' Started SelectChannelConnector@0.0.0.0:9095';
78
Singhsumalee, Pete (ps2418)56bb06b2017-09-25 14:13:15 -050079USER_EXISTS=$(check_if_user_exists aaiadmin);
Venkata Harish K Kajur96f120c2017-09-07 22:09:25 -040080
Singhsumalee, Pete (ps2418)56bb06b2017-09-25 14:13:15 -050081function check_if_user_exists(){
82 local user_id=$1;
Venkata Harish K Kajur96f120c2017-09-07 22:09:25 -040083
Singhsumalee, Pete (ps2418)56bb06b2017-09-25 14:13:15 -050084 if [ -z "$user_id" ]; then
85 echo "Needs to provide at least one argument for check_if_user_exists func";
86 exit 1;
87 fi;
Venkata Harish K Kajur96f120c2017-09-07 22:09:25 -040088
Singhsumalee, Pete (ps2418)56bb06b2017-09-25 14:13:15 -050089 id -u ${user_id} > /dev/null 2>&1 && {
90 echo "1";
91 } || {
92 echo "0";
93 }
Venkata Harish K Kajur96f120c2017-09-07 22:09:25 -040094}
95
Singhsumalee, Pete (ps2418)56bb06b2017-09-25 14:13:15 -050096
97if [ "${USER_EXISTS}" -eq 0 ]; then
98 export USER_ID=9000;
99else
100 export USER_ID=$(id -u aaiadmin);
101fi;
102
103RESOURCES_CONTAINER_NAME=$(${DOCKER_COMPOSE_CMD} up -d aai-resources.api.simpledemo.openecomp.org 2>&1 | grep 'Creating' | grep -v 'volume' | grep -v 'network' | awk '{ print $2; }' | head -1);
104wait_for_container ${RESOURCES_CONTAINER_NAME} '0.0.0.0:8447';
105
106docker logs ${RESOURCES_CONTAINER_NAME};
107
108${DOCKER_COMPOSE_CMD} up -d aai-traversal.api.simpledemo.openecomp.org aai.api.simpledemo.openecomp.org
109echo "A&AI Microservices, resources and traversal, are up and running along with HAProxy";
Venkata Harish K Kajur96f120c2017-09-07 22:09:25 -0400110# Set the host ip for robot from the haproxy
Venkata Harish K Kajurcbcc00c2017-09-09 20:30:04 -0400111ROBOT_VARIABLES="-v HOST_IP:`ip addr show docker0 | head -3 | tail -1 | cut -d' ' -f6 | cut -d'/' -f1`"