blob: 377ce4b17d406d4b8fd026c702c11fbf8d946415 [file] [log] [blame]
Gary Wu9abb61c2018-09-27 10:38:50 -07001#!/bin/bash
2# ============LICENSE_START=======================================================
3# Copyright (C) 2018 Ericsson. All rights reserved.
a.sreekumar7d80c382019-05-07 13:36:39 +00004#
5# Modifications copyright (c) 2019 Nordix Foundation.
Bilal A9f54c002020-01-16 16:12:19 +00006# Modifications Copyright (C) 2020 AT&T Intellectual Property.
Gary Wu9abb61c2018-09-27 10:38:50 -07007# ================================================================================
8# Licensed under the Apache License, Version 2.0 (the "License");
9# you may not use this file except in compliance with the License.
10# You may obtain a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing, software
15# distributed under the License is distributed on an "AS IS" BASIS,
16# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17# See the License for the specific language governing permissions and
18# limitations under the License.
19#
20# SPDX-License-Identifier: Apache-2.0
21# ============LICENSE_END=========================================================
Bilal Ad46ab2e2019-06-07 21:25:59 +000022source ${SCRIPTS}/policy/config/policy-csit.conf
23export POLICY_MARIADB_VER
24echo ${GERRIT_BRANCH}
25echo ${POLICY_MARIADB_VER}
Gary Wu9abb61c2018-09-27 10:38:50 -070026
a.sreekumar7d80c382019-05-07 13:36:39 +000027echo "Uninstall docker-py and reinstall docker."
28pip uninstall -y docker-py
29pip uninstall -y docker
30pip install -U docker==2.7.0
Gary Wu9abb61c2018-09-27 10:38:50 -070031
a.sreekumar7d80c382019-05-07 13:36:39 +000032# the directory of the script
33DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
34echo ${DIR}
35
36# the temp directory used, within $DIR
37# omit the -p parameter to create a temporal directory in the default location
38WORK_DIR=`mktemp -d -p "$DIR"`
39echo ${WORK_DIR}
40
41cd ${WORK_DIR}
42
43# check if tmp dir was created
44if [[ ! "$WORK_DIR" || ! -d "$WORK_DIR" ]]; then
45 echo "Could not create temp dir"
46 exit 1
47fi
48
Bilal Ad46ab2e2019-06-07 21:25:59 +000049sudo apt-get -y install libxml2-utils
Bilal A9f54c002020-01-16 16:12:19 +000050bash ${SCRIPTS}/policy/policy-models-dmaap-sim.sh
51
Bilal A71e57372019-12-17 02:17:57 +000052POLICY_API_VERSION_EXTRACT="$(curl -q --silent https://git.onap.org/policy/api/plain/pom.xml?h=${GERRIT_BRANCH} | xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' -)"
53export POLICY_API_VERSION="${POLICY_API_VERSION_EXTRACT:0:3}-SNAPSHOT-latest"
54POLICY_PAP_VERSION_EXTRACT="$(curl -q --silent https://git.onap.org/policy/pap/plain/pom.xml?h=${GERRIT_BRANCH} | xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' -)"
55export POLICY_PAP_VERSION="${POLICY_PAP_VERSION_EXTRACT:0:3}-SNAPSHOT-latest"
56POLICY_APEX_PDP_VERSION_EXTRACT="$(curl -q --silent https://git.onap.org/policy/apex-pdp/plain/pom.xml?h=${GERRIT_BRANCH} | xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' -)"
57export POLICY_APEX_PDP_VERSION="${POLICY_APEX_PDP_VERSION_EXTRACT:0:3}-SNAPSHOT-latest"
Bilal Ad46ab2e2019-06-07 21:25:59 +000058
59echo ${POLICY_API_VERSION}
60echo ${POLICY_PAP_VERSION}
61echo ${POLICY_APEX_PDP_VERSION}
62
a.sreekumar7d80c382019-05-07 13:36:39 +000063# Adding this waiting container due to race condition between pap and mariadb
64docker-compose -f ${WORKSPACE}/scripts/policy/policy-apex-pdp/docker-compose-apex.yml run --rm start_dependencies
Jim Hahn954af932019-06-03 15:00:08 -040065
66#Configure the database
67docker exec -it mariadb chmod +x /docker-entrypoint-initdb.d/db.sh
68docker exec -it mariadb /docker-entrypoint-initdb.d/db.sh
69
70# now bring everything else up
71docker-compose -f ${WORKSPACE}/scripts/policy/policy-apex-pdp/docker-compose-apex.yml run --rm start_all
72
73unset http_proxy https_proxy
a.sreekumar7d80c382019-05-07 13:36:39 +000074
75POLICY_API_IP=`get-instance-ip.sh policy-api`
76POLICY_PAP_IP=`get-instance-ip.sh policy-pap`
77MARIADB_IP=`get-instance-ip.sh mariadb`
78APEX_IP=`get-instance-ip.sh policy-apex-pdp`
79DMAAP_IP=`get-instance-ip.sh dmaap-simulator`
80
81echo PAP IP IS ${POLICY_PAP_IP}
82echo MARIADB IP IS ${MARIADB_IP}
83echo API IP IS ${POLICY_API_IP}
Gary Wu9abb61c2018-09-27 10:38:50 -070084echo APEX IP IS ${APEX_IP}
a.sreekumar7d80c382019-05-07 13:36:39 +000085echo DMAAP_IP IS ${DMAAP_IP}
86
a.sreekumar7d80c382019-05-07 13:36:39 +000087ROBOT_VARIABLES="-v APEX_IP:${APEX_IP} -v POLICY_API_IP:${POLICY_API_IP} -v POLICY_PAP_IP:${POLICY_PAP_IP}"