Merge "Fix robot failures in kubernetes CSITs"
[policy/docker.git] / csit / pap / plans / setup.sh
1 #!/bin/bash
2 # ============LICENSE_START=======================================================
3 #  Copyright (C) 2019-2022 Nordix Foundation.
4 #  Modifications Copyright (C) 2019-2021 AT&T Intellectual Property.
5 #  Modifications Copyright (C) 2022-2023 Nordix Foundation.
6 # ================================================================================
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #      http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19 # SPDX-License-Identifier: Apache-2.0
20 # ============LICENSE_END=========================================================
21
22 echo "Uninstall docker-py and reinstall docker."
23 python3 -m pip uninstall -y docker-py
24 python3 -m pip uninstall -y docker
25 python3 -m pip install -U docker
26
27 source "${SCRIPTS}"/get-versions.sh
28
29 sudo apt-get -y install libxml2-utils
30 bash "${SCRIPTS}"/get-models-examples.sh
31
32 echo "${POLICY_PAP_VERSION}"
33
34 cd "${SCRIPTS}"
35 docker-compose -f "${SCRIPTS}"/docker-compose-all.yml up -d pap apex-pdp grafana
36
37 sleep 10
38 unset http_proxy https_proxy
39
40 POLICY_PAP_IP=$(get-instance-ip.sh policy-pap)
41 POLICY_API_IP=$(get-instance-ip.sh policy-api)
42 MARIADB_IP=$(get-instance-ip.sh mariadb)
43
44 echo PAP IP IS "${POLICY_PAP_IP}"
45 echo API IP IS "${POLICY_API_IP}"
46 echo MARIADB IP IS "${MARIADB_IP}"
47
48 # wait for the app to start up
49 "${SCRIPTS}"/wait_for_port.sh "${POLICY_PAP_IP}" 6969
50
51 DATA=${WORKSPACE}/models/models-examples/src/main/resources/policies
52
53 NODETEMPLATES=${WORKSPACE}/models/models-examples/src/main/resources/nodetemplates
54
55 ROBOT_VARIABLES=""
56 ROBOT_VARIABLES="${ROBOT_VARIABLES} -v POLICY_PAP_IP:${POLICY_PAP_IP}"
57 ROBOT_VARIABLES="${ROBOT_VARIABLES} -v POLICY_API_IP:${POLICY_API_IP}"
58 ROBOT_VARIABLES="${ROBOT_VARIABLES} -v DATA:${DATA}"
59 ROBOT_VARIABLES="${ROBOT_VARIABLES} -v NODETEMPLATES:${NODETEMPLATES}"