pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # ============LICENSE_START======================================================= |
a.sreekumar | 2070574 | 2020-02-14 12:03:33 +0000 | [diff] [blame] | 3 | # Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved. |
pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 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========================================================= |
a.sreekumar | 2070574 | 2020-02-14 12:03:33 +0000 | [diff] [blame] | 19 | |
| 20 | # OS upgrades |
| 21 | |
Bilal A | d46ab2e | 2019-06-07 21:25:59 +0000 | [diff] [blame] | 22 | source ${SCRIPTS}/policy/config/policy-csit.conf |
| 23 | export POLICY_MARIADB_VER |
| 24 | echo ${GERRIT_BRANCH} |
| 25 | echo ${POLICY_MARIADB_VER} |
pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 26 | |
| 27 | echo "Uninstall docker-py and reinstall docker." |
| 28 | pip uninstall -y docker-py |
| 29 | pip uninstall -y docker |
| 30 | pip install -U docker==2.7.0 |
| 31 | |
Bilal A | d46ab2e | 2019-06-07 21:25:59 +0000 | [diff] [blame] | 32 | sudo apt-get -y install libxml2-utils |
Bilal A | 71e5737 | 2019-12-17 02:17:57 +0000 | [diff] [blame] | 33 | POLICY_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()' -)" |
| 34 | echo ${POLICY_DROOLS_APPS_VERSION_EXTRACT} |
| 35 | export POLICY_DROOLS_APPS_VERSION="${POLICY_DROOLS_APPS_VERSION_EXTRACT:0:3}-SNAPSHOT-latest" |
| 36 | echo ${POLICY_DROOLS_APPS_VERSION} |
Bilal A | d46ab2e | 2019-06-07 21:25:59 +0000 | [diff] [blame] | 37 | |
a.sreekumar | 2070574 | 2020-02-14 12:03:33 +0000 | [diff] [blame] | 38 | echo "user information: $(id)" |
| 39 | echo "docker and docker-compose versions:" |
| 40 | docker -v && docker-compose -v |
pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 41 | |
pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 42 | docker container ls -a |
| 43 | |
| 44 | docker-compose -f ${WORKSPACE}/scripts/policy/docker-compose-drools-apps.yml up -d |
a.sreekumar | 2070574 | 2020-02-14 12:03:33 +0000 | [diff] [blame] | 45 | sleep 2m |
pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 46 | |
pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 47 | docker container ls -a |
| 48 | |
| 49 | POLICY_DROOLS_IP=`get-instance-ip.sh drools` |
| 50 | MARIADB_IP=`get-instance-ip.sh mariadb` |
| 51 | |
| 52 | echo DROOLS IP IS ${POLICY_DROOLS_IP} |
| 53 | echo MARIADB IP IS ${MARIADB_IP} |
| 54 | |
pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 55 | for i in {1..10}; do |
| 56 | curl -sS ${POLICY_DROOLS_IP}:6969 && break |
| 57 | echo sleep $i |
| 58 | sleep $i |
| 59 | done |
| 60 | |
a.sreekumar | 2070574 | 2020-02-14 12:03:33 +0000 | [diff] [blame] | 61 | # to give enough time to the usecases controller to come up |
| 62 | sleep 2m |
| 63 | |
pdragosh | 3f9a096 | 2019-04-16 13:19:45 -0400 | [diff] [blame] | 64 | ROBOT_VARIABLES="-v POLICY_DROOLS_IP:${POLICY_DROOLS_IP}" |