pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 1 | #!/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 A | d46ab2e | 2019-06-07 21:25:59 +0000 | [diff] [blame] | 19 | source ${SCRIPTS}/policy/config/policy-csit.conf |
| 20 | export POLICY_MARIADB_VER |
| 21 | echo ${GERRIT_BRANCH} |
| 22 | echo ${POLICY_MARIADB_VER} |
pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 23 | |
| 24 | echo "Uninstall docker-py and reinstall docker." |
| 25 | pip uninstall -y docker-py |
| 26 | pip uninstall -y docker |
| 27 | pip install -U docker==2.7.0 |
| 28 | |
Bilal A | d46ab2e | 2019-06-07 21:25:59 +0000 | [diff] [blame] | 29 | sudo apt-get -y install libxml2-utils |
| 30 | export POLICY_DROOLS_APPS_VERSION="$(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()' -)" |
| 31 | echo ${POLICY_DRROLS_APPS_VERSION} |
| 32 | |
pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 33 | docker login -u docker -p docker nexus3.onap.org:10001 |
| 34 | |
| 35 | # Adding this waiting container to avoid race condition between api and mariadb containers. |
| 36 | docker-compose -f ${WORKSPACE}/scripts/policy/docker-compose-drools-apps.yml run --rm start_dependencies |
| 37 | docker logs mariadb |
| 38 | docker container ls -a |
| 39 | |
| 40 | docker-compose -f ${WORKSPACE}/scripts/policy/docker-compose-drools-apps.yml up -d |
| 41 | sleep 1m |
| 42 | |
| 43 | docker logs mariadb |
| 44 | docker logs drools |
| 45 | docker container ls -a |
| 46 | |
| 47 | POLICY_DROOLS_IP=`get-instance-ip.sh drools` |
| 48 | MARIADB_IP=`get-instance-ip.sh mariadb` |
| 49 | |
| 50 | echo DROOLS IP IS ${POLICY_DROOLS_IP} |
| 51 | echo MARIADB IP IS ${MARIADB_IP} |
| 52 | |
| 53 | # Wait for initialization |
| 54 | for i in {1..10}; do |
| 55 | curl -sS ${MARIADB_IP}:3306 && break |
| 56 | echo sleep $i |
| 57 | sleep $i |
| 58 | done |
| 59 | |
| 60 | for i in {1..10}; do |
| 61 | curl -sS ${POLICY_DROOLS_IP}:6969 && break |
| 62 | echo sleep $i |
| 63 | sleep $i |
| 64 | done |
| 65 | |
| 66 | ROBOT_VARIABLES="-v POLICY_DROOLS_IP:${POLICY_DROOLS_IP}" |