Updating CSITs to pull required images
[integration/csit.git] / plans / policy / apex-pdp / setup.sh
1 #!/bin/bash
2 # ============LICENSE_START=======================================================
3 #  Copyright (C) 2018 Ericsson. All rights reserved.
4 #
5 #  Modifications copyright (c) 2019 Nordix Foundation.
6 #  Modifications Copyright (C) 2019 AT&T Intellectual Property.
7 # ================================================================================
8 # Licensed under the Apache License, Version 2.0 (the "License");
9 # you may not use this file except in compliance with the License.
10 # You may obtain a copy of the License at
11 #
12 #      http://www.apache.org/licenses/LICENSE-2.0
13 #
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 # See the License for the specific language governing permissions and
18 # limitations under the License.
19 #
20 # SPDX-License-Identifier: Apache-2.0
21 # ============LICENSE_END=========================================================
22 source ${SCRIPTS}/policy/config/policy-csit.conf
23 export POLICY_MARIADB_VER
24 echo ${GERRIT_BRANCH}
25 echo ${POLICY_MARIADB_VER}
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
32 # the directory of the script
33 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
34 echo ${DIR}
35
36 # the temp directory used, within $DIR
37 # omit the -p parameter to create a temporal directory in the default location
38 WORK_DIR=`mktemp -d -p "$DIR"`
39 echo ${WORK_DIR}
40
41 cd ${WORK_DIR}
42
43 # check if tmp dir was created
44 if [[ ! "$WORK_DIR" || ! -d "$WORK_DIR" ]]; then
45   echo "Could not create temp dir"
46   exit 1
47 fi
48
49 # bring down maven
50 mkdir maven
51 cd maven
52 # download maven from automatically selected mirror server
53 curl -vLO  "https://www.apache.org/dyn/mirrors/mirrors.cgi?cca2=us&preferred=http://apache.claz.org/&action=download&filename=maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz"
54 if ! tar -xzvf apache-maven-3.3.9-bin.tar.gz ; then
55     echo "Installation of maven has failed!"
56     exit 1
57 fi
58 ls -l
59 export PATH=${PATH}:${WORK_DIR}/maven/apache-maven-3.3.9/bin
60 ${WORK_DIR}/maven/apache-maven-3.3.9/bin/mvn -v
61 cd ..
62
63 git clone http://gerrit.onap.org/r/oparent
64 git clone --depth 1 https://gerrit.onap.org/r/policy/models -b ${GERRIT_BRANCH}
65 cd models/models-sim/models-sim-dmaap
66 ${WORK_DIR}/maven/apache-maven-3.3.9/bin/mvn clean install -DskipTests  --settings ${WORK_DIR}/oparent/settings.xml
67 bash ./src/main/package/docker/docker_build.sh
68 cd ${WORKSPACE}
69 rm -rf ${WORK_DIR}
70 sleep 3
71
72 sudo apt-get -y install libxml2-utils
73 POLICY_API_VERSION_EXTRACT="$(curl -q --silent https://git.onap.org/policy/api/plain/pom.xml?h=${GERRIT_BRANCH} | xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' -)"
74 export POLICY_API_VERSION="${POLICY_API_VERSION_EXTRACT:0:3}-SNAPSHOT-latest"
75 POLICY_PAP_VERSION_EXTRACT="$(curl -q --silent https://git.onap.org/policy/pap/plain/pom.xml?h=${GERRIT_BRANCH} | xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' -)"
76 export POLICY_PAP_VERSION="${POLICY_PAP_VERSION_EXTRACT:0:3}-SNAPSHOT-latest"
77 POLICY_APEX_PDP_VERSION_EXTRACT="$(curl -q --silent https://git.onap.org/policy/apex-pdp/plain/pom.xml?h=${GERRIT_BRANCH} | xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' -)"
78 export POLICY_APEX_PDP_VERSION="${POLICY_APEX_PDP_VERSION_EXTRACT:0:3}-SNAPSHOT-latest"
79
80 echo ${POLICY_API_VERSION}
81 echo ${POLICY_PAP_VERSION}
82 echo ${POLICY_APEX_PDP_VERSION}
83
84 # Adding this waiting container due to race condition between pap and mariadb
85 docker-compose -f ${WORKSPACE}/scripts/policy/policy-apex-pdp/docker-compose-apex.yml run --rm start_dependencies
86
87 #Configure the database
88 docker exec -it mariadb  chmod +x /docker-entrypoint-initdb.d/db.sh
89 docker exec -it mariadb  /docker-entrypoint-initdb.d/db.sh
90
91 # now bring everything else up
92 docker-compose -f ${WORKSPACE}/scripts/policy/policy-apex-pdp/docker-compose-apex.yml run --rm start_all
93
94 unset http_proxy https_proxy
95
96 POLICY_API_IP=`get-instance-ip.sh policy-api`
97 POLICY_PAP_IP=`get-instance-ip.sh policy-pap`
98 MARIADB_IP=`get-instance-ip.sh mariadb`
99 APEX_IP=`get-instance-ip.sh policy-apex-pdp`
100 DMAAP_IP=`get-instance-ip.sh dmaap-simulator`
101
102 echo PAP IP IS ${POLICY_PAP_IP}
103 echo MARIADB IP IS ${MARIADB_IP}
104 echo API IP IS ${POLICY_API_IP}
105 echo APEX IP IS ${APEX_IP}
106 echo DMAAP_IP IS ${DMAAP_IP}
107
108 ROBOT_VARIABLES="-v APEX_IP:${APEX_IP} -v POLICY_API_IP:${POLICY_API_IP} -v POLICY_PAP_IP:${POLICY_PAP_IP}"