econwar | 3acb57a | 2019-01-25 12:05:45 +0000 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # |
| 3 | # ============LICENSE_START======================================================= |
| 4 | # Copyright (C) 2019 Nordix Foundation. |
| 5 | # ================================================================================ |
| 6 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | # you may not use this file except in compliance with the License. |
| 8 | # You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, software |
| 13 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | # See the License for the specific language governing permissions and |
| 16 | # limitations under the License. |
| 17 | # |
| 18 | # SPDX-License-Identifier: Apache-2.0 |
| 19 | # ============LICENSE_END========================================================= |
| 20 | # |
| 21 | source ${SCRIPTS}/common_functions.sh |
| 22 | |
| 23 | # Clone DMaaP Data Router repo |
| 24 | mkdir -p $WORKSPACE/archives/dmaapdr |
| 25 | cd $WORKSPACE/archives/dmaapdr |
| 26 | |
| 27 | git clone --depth 1 https://gerrit.onap.org/r/dmaap/datarouter -b master |
| 28 | cd datarouter |
| 29 | git pull |
| 30 | cd $WORKSPACE/archives/dmaapdr/datarouter/datarouter-docker-compose/src/main/resources |
| 31 | |
| 32 | # start DMaaP DR containers with docker compose and configuration from docker-compose.yml |
| 33 | docker login -u docker -p docker nexus3.onap.org:10001 |
| 34 | docker-compose up -d |
| 35 | |
| 36 | # Wait for initialization of Docker container for datarouter-node, datarouter-prov and mariadb |
| 37 | for i in {1..10}; do |
| 38 | if [ $(docker inspect --format '{{ .State.Running }}' datarouter-node) ] && \ |
| 39 | [ $(docker inspect --format '{{ .State.Running }}' datarouter-prov) ] && \ |
| 40 | [ $(docker inspect --format '{{ .State.Running }}' subscriber-node) ] && \ |
| 41 | [ $(docker inspect --format '{{ .State.Running }}' mariadb) ] |
| 42 | then |
| 43 | echo "DR Service Running" |
| 44 | break |
| 45 | else |
| 46 | echo sleep $i |
| 47 | sleep $i |
| 48 | fi |
| 49 | done |
| 50 | |
| 51 | DR_PROV_IP=`get-instance-ip.sh datarouter-prov` |
| 52 | DR_NODE_IP=`get-instance-ip.sh datarouter-node` |
| 53 | DR_SUB_IP=`get-instance-ip.sh subscriber-node` |
| 54 | DR_GATEWAY_IP=$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.Gateway}}{{end}}' datarouter-prov) |
| 55 | |
| 56 | echo DR_PROV_IP=${DR_PROV_IP} |
| 57 | echo DR_NODE_IP=${DR_NODE_IP} |
| 58 | echo DR_SUB_IP=${DR_SUB_IP} |
| 59 | echo DR_GATEWAY_IP=${DR_GATEWAY_IP} |
| 60 | |
| 61 | sudo sed -i "$ a $DR_PROV_IP dmaap-dr-prov" /etc/hosts |
| 62 | sudo sed -i "$ a $DR_NODE_IP dmaap-dr-node" /etc/hosts |
| 63 | |
| 64 | python $WORKSPACE/scripts/dmaap-datarouter/update_ca.py |
| 65 | |
| 66 | docker exec -i datarouter-prov sh -c "curl -k -X PUT https://dmaap-dr-prov:8443/internal/api/PROV_AUTH_ADDRESSES?val=dmaap-dr-prov\|$DR_GATEWAY_IP" |
| 67 | |
| 68 | ROBOT_VARIABLES="-v DR_SUB_IP:${DR_SUB_IP}" |