blob: bd5cb52149b00a38ef7fcf767a7a098b43f1495d [file] [log] [blame]
Gary Wu9abb61c2018-09-27 10:38:50 -07001#!/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}
27DOCKER_IMAGE_VERSION=1.2-STAGING-latest
28
29export CURRENT_PWD=$(pwd);
30
31function wait_for_container() {
32
33 CONTAINER_NAME="$1";
34 START_TEXT="$2";
35
36 TIMEOUT=360
37
38 # wait for the real startup
39 AMOUNT_STARTUP=$(docker logs ${CONTAINER_NAME} 2>&1 | grep "$START_TEXT" | wc -l)
40 while [[ ${AMOUNT_STARTUP} -ne 1 ]];
41 do
42 echo "Waiting for '$CONTAINER_NAME' deployment to finish ..."
43 AMOUNT_STARTUP=$(docker logs ${CONTAINER_NAME} 2>&1 | grep "$START_TEXT" | wc -l)
44 if [ "$TIMEOUT" = "0" ];
45 then
46 docker logs ${CONTAINER_NAME};
47 echo "ERROR: $CONTAINER_NAME deployment failed."
48 exit 1
49 fi
50 let TIMEOUT-=1
51 sleep 1
52 done
53}
54
55DOCKER_COMPOSE_CMD="docker-compose";
56export MTU=$(/sbin/ifconfig | grep MTU | sed 's/.*MTU://' | sed 's/ .*//' | sort -n | head -1);
57export DOCKER_REGISTRY="nexus3.onap.org:10001";
58export AAI_HAPROXY_IMAGE="${AAI_HAPROXY_IMAGE:-aaionap/haproxy}";
59export HAPROXY_VERSION="${HAPROXY_VERSION:-1.2.0}";
60export HBASE_IMAGE="${HBASE_IMAGE:-aaionap/hbase}";
61export HBASE_VERSION="${HBASE_VERSION:-1.2.0}";
62
63docker pull ${HBASE_IMAGE}:${HBASE_VERSION};
64
65docker pull ${HBASE_IMAGE}:${HBASE_VERSION};
66docker pull ${DOCKER_REGISTRY}/onap/aai-resources:${DOCKER_IMAGE_VERSION};
67docker tag ${DOCKER_REGISTRY}/onap/aai-resources:${DOCKER_IMAGE_VERSION} ${DOCKER_REGISTRY}/onap/aai-resources:latest;
68
69docker pull ${DOCKER_REGISTRY}/onap/aai-traversal:${DOCKER_IMAGE_VERSION};
70docker tag ${DOCKER_REGISTRY}/onap/aai-traversal:${DOCKER_IMAGE_VERSION} ${DOCKER_REGISTRY}/onap/aai-traversal:latest;
71
72${DOCKER_COMPOSE_CMD} stop
73${DOCKER_COMPOSE_CMD} rm -f -v
74
75# Start the hbase where the data will be stored
76CASSANDRA_CONTAINER_NAME=$(${DOCKER_COMPOSE_CMD} up -d aai.hbase.simpledemo.onap.org 2>&1 | grep 'Creating' | grep -v 'volume' | grep -v 'network' | awk '{ print $2; }' | head -1);
77wait_for_container $CASSANDRA_CONTAINER_NAME 'Listening for thrift clients';
78
79USER_EXISTS=$(check_if_user_exists aaiadmin);
80
81function check_if_user_exists(){
82 local user_id=$1;
83
84 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;
88
89 id -u ${user_id} > /dev/null 2>&1 && {
90 echo "1";
91 } || {
92 echo "0";
93 }
94}
95
96
97if [ "${USER_EXISTS}" -eq 0 ]; then
98 export USER_ID=9000;
99else
100 export USER_ID=$(id -u aaiadmin);
101fi;
102
103$DOCKER_COMPOSE_CMD run --rm aai-resources.api.simpledemo.onap.org createDBSchema.sh
104
105RESOURCES_CONTAINER_NAME=$(${DOCKER_COMPOSE_CMD} up -d aai-resources.api.simpledemo.onap.org 2>&1 | grep 'Creating' | grep -v 'volume' | grep -v 'network' | awk '{ print $2; }' | head -1);
106wait_for_container $RESOURCES_CONTAINER_NAME 'Resources Microservice Started';
107
108docker logs ${RESOURCES_CONTAINER_NAME};
109
110${DOCKER_COMPOSE_CMD} up -d aai-traversal.api.simpledemo.onap.org aai.api.simpledemo.onap.org
111echo "A&AI Microservices, resources and traversal, are up and running along with HAProxy";
112# Set the host ip for robot from the haproxy
113ROBOT_VARIABLES="-v HOST_IP:`ip addr show docker0 | head -3 | tail -1 | cut -d' ' -f6 | cut -d'/' -f1`"