blob: e550cdb0a35241ca2661f5cf546d8768439722cd [file] [log] [blame]
pdragosh3f9a0962019-04-16 13:19:45 -04001#!/bin/bash
2# ============LICENSE_START=======================================================
3# Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
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# SPDX-License-Identifier: Apache-2.0
18# ============LICENSE_END=========================================================
Bilal Ad46ab2e2019-06-07 21:25:59 +000019source ${SCRIPTS}/policy/config/policy-csit.conf
20export POLICY_MARIADB_VER
21echo ${GERRIT_BRANCH}
22echo ${POLICY_MARIADB_VER}
pdragosh3f9a0962019-04-16 13:19:45 -040023
24echo "Uninstall docker-py and reinstall docker."
25pip uninstall -y docker-py
26pip uninstall -y docker
27pip install -U docker==2.7.0
28
Bilal Ad46ab2e2019-06-07 21:25:59 +000029sudo apt-get -y install libxml2-utils
Bilal A71e57372019-12-17 02:17:57 +000030POLICY_DROOLS_APPS_VERSION_EXTRACT="$(curl -q --silent https://git.onap.org/policy/drools-applications/plain/pom.xml?h=${GERRIT_BRANCH} | xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' -)"
31echo ${POLICY_DROOLS_APPS_VERSION_EXTRACT}
32export POLICY_DROOLS_APPS_VERSION="${POLICY_DROOLS_APPS_VERSION_EXTRACT:0:3}-SNAPSHOT-latest"
33echo ${POLICY_DROOLS_APPS_VERSION}
Bilal Ad46ab2e2019-06-07 21:25:59 +000034
pdragosh3f9a0962019-04-16 13:19:45 -040035docker login -u docker -p docker nexus3.onap.org:10001
36
37# Adding this waiting container to avoid race condition between api and mariadb containers.
38docker-compose -f ${WORKSPACE}/scripts/policy/docker-compose-drools-apps.yml run --rm start_dependencies
39docker logs mariadb
40docker container ls -a
41
42docker-compose -f ${WORKSPACE}/scripts/policy/docker-compose-drools-apps.yml up -d
43sleep 1m
44
45docker logs mariadb
46docker logs drools
47docker container ls -a
48
49POLICY_DROOLS_IP=`get-instance-ip.sh drools`
50MARIADB_IP=`get-instance-ip.sh mariadb`
51
52echo DROOLS IP IS ${POLICY_DROOLS_IP}
53echo MARIADB IP IS ${MARIADB_IP}
54
55# Wait for initialization
56for i in {1..10}; do
57 curl -sS ${MARIADB_IP}:3306 && break
58 echo sleep $i
59 sleep $i
60done
61
62for i in {1..10}; do
63 curl -sS ${POLICY_DROOLS_IP}:6969 && break
64 echo sleep $i
65 sleep $i
66done
67
68ROBOT_VARIABLES="-v POLICY_DROOLS_IP:${POLICY_DROOLS_IP}"