blob: 8207367479a40bea5bdb8f29561cf6068fe00f4d [file] [log] [blame]
Gary Wu9abb61c2018-09-27 10:38:50 -07001#!/bin/bash
2#
3# ============LICENSE_START=======================================================
4# ONAP AAF
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============================================
Gary Wu9abb61c2018-09-27 10:38:50 -070021#
Instrumental550892e2018-11-02 06:23:55 -050022
23echo "AAF setup.sh"
24# Starting Directory
25CURRENT_DIR=$(pwd)
26
27if [ "$(uname)" = "Darwin" ]; then
28 SED="sed -i .bak"
29else
30 SED="sed -i"
31fi
32
Gary Wu9abb61c2018-09-27 10:38:50 -070033# Place the scripts in run order:
34source ${SCRIPTS}/common_functions.sh
35
36# Clone AAF Authz repo
Instrumental550892e2018-11-02 06:23:55 -050037CODE_DIR="$WORKSPACE/archives/opt"
38mkdir -p $CODE_DIR
39cd $CODE_DIR
40
41# Get or refresh AAF Code set
42if [ -e authz ]; then
43 cd authz
44 git pull
45else
46 git clone --depth 1 http://gerrit.onap.org/r/aaf/authz -b master
47 chmod -R 777 authz
48 cd authz
49fi
Instrumental0da89a72019-02-21 07:10:14 -060050echo "Current Dir: ${PWD}"
Sai Gandham94df0ae2018-10-09 16:29:54 -050051
Instrumental550892e2018-11-02 06:23:55 -050052# Locate to Docker dir
53cd auth/docker
54if [ ! -e d.props ]; then
55 cp d.props.init d.props
56fi
Instrumental0da89a72019-02-21 07:10:14 -060057echo "Current Dir: ${PWD}"
Instrumental550892e2018-11-02 06:23:55 -050058source d.props
Sai Gandham94df0ae2018-10-09 16:29:54 -050059
Instrumental550892e2018-11-02 06:23:55 -050060# Fill in anything missing
61$SED "s/^LATITUDE=.*/LATITUDE=${LATITUDE:=38.0}/" d.props
62$SED "s/^LONGITUDE=.*/LONGITUDE=${LONGITUDE:=-72.0}/" d.props
Instrumental0da89a72019-02-21 07:10:14 -060063$SED "s/^LONGITUDE=.*/LONGITUDE=${LONGITUDE:=-72.0}/" d.props
Instrumental550892e2018-11-02 06:23:55 -050064# For Jenkins, gotta use 10001, not 10003
65DOCKER_REPOSITORY=nexus3.onap.org:10001
66$SED "s/DOCKER_REPOSITORY=.*/DOCKER_REPOSITORY=$DOCKER_REPOSITORY/" d.props
Sai Gandham94df0ae2018-10-09 16:29:54 -050067
Instrumental550892e2018-11-02 06:23:55 -050068$SED "s/HOSTNAME=.*/HOSTNAME=aaf.api.simpledemo.onap.org/" d.props
69DOCKER_NAME=$(docker info | grep Name | awk '{print $2}' )
70echo "Docker Name is $DOCKER_NAME"
71
Instrumental0da89a72019-02-21 07:10:14 -060072
73#if [ "$DOCKER_NAME" = "minikube" ]; then
74# echo "Minikube IP"
75# HOST_IP=$(minikube ip)
76#else
77# echo "Trying to get IP from Docker $DOCKER_NAME with 'ip route' method"
78# # ip route get 8.8.8.8
79# HOST_IP=$(ip route get 8.8.8.8 | awk '{print $7}')
80# if [ -z "$HOST_IP" ]; then
81# echo "Critical HOST_IP could not be obtained by 2 different methods. Exiting..."
82# exit
83# fi
84# echo
85#fi
86#$SED "s/HOST_IP=.*/HOST_IP=$HOST_IP/" d.props
87
88if [ -z "$SKIP_PULL" ]; then
89 # Pull latest Dockers
90 AAF_DOCKER_VERSION=${VERSION}
91 NEXUS_USERNAME=anonymous
92 NEXUS_PASSWD=anonymous
93 echo "$NEXUS_PASSWD" | docker login -u $NEXUS_USERNAME --password-stdin $DOCKER_REPOSITORY
94
95 docker pull $DOCKER_REPOSITORY/onap/aaf/aaf_cass:$AAF_DOCKER_VERSION
96 docker pull $DOCKER_REPOSITORY/onap/aaf/aaf_config:$AAF_DOCKER_VERSION
97 docker pull $DOCKER_REPOSITORY/onap/aaf/aaf_cm:$AAF_DOCKER_VERSION
98 docker pull $DOCKER_REPOSITORY/onap/aaf/aaf_fs:$AAF_DOCKER_VERSION
99 docker pull $DOCKER_REPOSITORY/onap/aaf/aaf_gui:$AAF_DOCKER_VERSION
100 docker pull $DOCKER_REPOSITORY/onap/aaf/aaf_hello:$AAF_DOCKER_VERSION
101 docker pull $DOCKER_REPOSITORY/onap/aaf/aaf_locate:$AAF_DOCKER_VERSION
102 docker pull $DOCKER_REPOSITORY/onap/aaf/aaf_oauth:$AAF_DOCKER_VERSION
103 docker pull $DOCKER_REPOSITORY/onap/aaf/aaf_service:$AAF_DOCKER_VERSION
Instrumental550892e2018-11-02 06:23:55 -0500104fi
Instrumental550892e2018-11-02 06:23:55 -0500105# Cassandra Install/Start
106cd ../auth-cass/docker
107echo Cassandra Install
108bash ./dinstall.sh
109cd -
Sai Gandham94df0ae2018-10-09 16:29:54 -0500110
Instrumental550892e2018-11-02 06:23:55 -0500111source d.props
112cat d.props
Sai Gandham60119ea2018-10-24 09:44:43 -0500113
Instrumental550892e2018-11-02 06:23:55 -0500114# AAF Run
Sai Gandham94df0ae2018-10-09 16:29:54 -0500115bash ./drun.sh
116
117docker images
118
119docker ps -a
120
Instrumental0da89a72019-02-21 07:10:14 -0600121for C in aaf-service aaf-locate aaf-oauth aaf-cm aaf-gui aaf-hello aaf-fs; do
Instrumental0e977532018-11-04 18:01:31 -0600122 docker logs $C
123done
Sai Gandham94df0ae2018-10-09 16:29:54 -0500124
Instrumental0da89a72019-02-21 07:10:14 -0600125bash ./aaf.sh wait aaf-service
Sai Gandham94df0ae2018-10-09 16:29:54 -0500126
Instrumental0da89a72019-02-21 07:10:14 -0600127AAF_IP=$(docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' aaf-service)
Gary Wu9abb61c2018-09-27 10:38:50 -0700128echo AAF_IP=${AAF_IP}
Gary Wu9abb61c2018-09-27 10:38:50 -0700129
Instrumental0da89a72019-02-21 07:10:14 -0600130openssl s_client -connect $AAF_IP:8100
131
132export ROBOT_VARIABLES="-v AAF_IP:${AAF_IP}"