blob: e6a4b227788bc271f4c1b5ff59321e2f8a0eb679 [file] [log] [blame]
vrvarmac420d632020-03-26 11:46:50 -04001#!/bin/bash
2#
3# Copyright 2018 Intel Corporation
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17
18# Not sure why this is needed.
19source ${SCRIPTS}/common_functions.sh
20
21CONFIG_FILE=$(pwd)/config/smsconfig.json
22
23mkdir -p $(pwd)/config
24
25docker login -u docker -p docker nexus3.onap.org:10001
26docker pull nexus3.onap.org:10001/onap/aaf/sms
27docker pull docker.io/vault:1.3.3
28
29#
30# Running vault in dev server mode here for CSIT
31# In HELM it runs in production mode
32#
33docker run -e "VAULT_DEV_ROOT_TOKEN_ID=aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee" \
34 -e SKIP_SETCAP=true \
35 --name vault -d -p 8200:8200 vault:1.3.3
36
37SMSDB_IP=$(docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' vault)
38cat << EOF > $CONFIG_FILE
39{
40 "cafile": "auth/selfsignedca.pem",
41 "servercert": "auth/server.cert",
42 "serverkey": "auth/server.key",
43
44 "smsdbaddress": "http://$SMSDB_IP:8200",
45 "vaulttoken": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
46 "disable_tls": true
47}
48EOF
49
50cat $CONFIG_FILE
51
52docker run --workdir /sms -v $CONFIG_FILE:/sms/smsconfig.json \
53 --name sms -d -p 10443:10443 --user root nexus3.onap.org:10001/onap/aaf/sms
54
55SMS_IP=$(docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' sms)
56
57echo "###### WAITING FOR ALL CONTAINERS TO COME UP"
58sleep 20
59for i in {1..20}; do
60 curl -sS -m 1 http://${SMSDB_IP}:8200/v1/sys/seal-status && break
61 echo sleep $i
62 sleep $i
63done
64
65#
66# add here all ROBOT_VARIABLES settings
67#
68echo "# sms robot variables settings";
69ROBOT_VARIABLES="-v SMS_HOSTNAME:http://${SMS_IP} -v SMS_PORT:10443"
70
71echo ${ROBOT_VARIABLES}