blob: 7f557d13d78f211f266d8b8d89cfb50f66608533 [file] [log] [blame]
Michael Mokry88f4d472019-03-04 12:00:05 -06001#!/bin/bash
2# ============LICENSE_START=======================================================
Bilal A9f54c002020-01-16 16:12:19 +00003# Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
Michael Mokry88f4d472019-03-04 12:00:05 -06004# ================================================================================
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=========================================================
19
Bilal Ad46ab2e2019-06-07 21:25:59 +000020source ${SCRIPTS}/policy/config/policy-csit.conf
Bilal Ad46ab2e2019-06-07 21:25:59 +000021
Michael Mokryb4f69622019-05-13 13:09:17 -050022echo "Uninstall docker-py and reinstall docker."
23pip uninstall -y docker-py
24pip uninstall -y docker
25pip install -U docker==2.7.0
26
Jim Hahn2d949212020-05-11 10:13:32 -040027SCR_DMAAP=${SCRIPTS}/policy/drools-apps
28
Bilal Ad46ab2e2019-06-07 21:25:59 +000029sudo apt-get -y install libxml2-utils
Jim Hahn00532422020-09-17 17:03:34 -040030bash ${SCRIPTS}/policy/get-models-examples.sh
Bilal A9f54c002020-01-16 16:12:19 +000031
Jim Hahn00532422020-09-17 17:03:34 -040032source ${SCRIPTS}/policy/detmVers.sh
Bilal Ad46ab2e2019-06-07 21:25:59 +000033
Jim Hahn00532422020-09-17 17:03:34 -040034docker-compose -f ${SCRIPTS}/policy/docker-compose-all.yml up -d xacml-pdp
Bilal A9f54c002020-01-16 16:12:19 +000035
Michael Mokryb4f69622019-05-13 13:09:17 -050036
37unset http_proxy https_proxy
38
39POLICY_API_IP=`get-instance-ip.sh policy-api`
40MARIADB_IP=`get-instance-ip.sh mariadb`
Michael Mokry88f4d472019-03-04 12:00:05 -060041POLICY_PDPX_IP=`get-instance-ip.sh policy-xacml-pdp`
Jim Hahn00532422020-09-17 17:03:34 -040042DMAAP_IP=`get-instance-ip.sh policy.api.simpledemo.onap.org`
Michael Mokryb4f69622019-05-13 13:09:17 -050043POLICY_PAP_IP=`get-instance-ip.sh policy-pap`
44
Michael Mokryb4f69622019-05-13 13:09:17 -050045echo PDP IP IS ${POLICY_PDPX_IP}
46echo API IP IS ${POLICY_API_IP}
47echo PAP IP IS ${POLICY_PAP_IP}
48echo MARIADB IP IS ${MARIADB_IP}
49echo DMAAP_IP IS ${DMAAP_IP}
50
Jim Hahn00532422020-09-17 17:03:34 -040051# wait for the app to start up
52${SCRIPTS}/policy/wait_for_port.sh ${POLICY_PDPX_IP} 6969
53
54DATA2=${WORKSPACE}/models/models-examples/src/main/resources/policies
Jim Hahn514799f2020-04-20 12:05:50 -040055
56ROBOT_VARIABLES=""
Jim Hahn2d949212020-05-11 10:13:32 -040057ROBOT_VARIABLES="${ROBOT_VARIABLES} -v SCR_DMAAP:${SCR_DMAAP}"
Jim Hahn514799f2020-04-20 12:05:50 -040058ROBOT_VARIABLES="${ROBOT_VARIABLES} -v DATA2:${DATA2}"
59ROBOT_VARIABLES="${ROBOT_VARIABLES} -v POLICY_PDPX_IP:${POLICY_PDPX_IP}"
60ROBOT_VARIABLES="${ROBOT_VARIABLES} -v POLICY_API_IP:${POLICY_API_IP}"
61ROBOT_VARIABLES="${ROBOT_VARIABLES} -v POLICY_PAP_IP:${POLICY_PAP_IP}"