tragait | 3ae5ef4 | 2019-09-06 11:31:59 +0100 | [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 | # @author Rahul Tyagi (rahul.tyagi@est.tech) |
| 22 | |
| 23 | CDS_DATA_PATH=$WORKSPACE/plans/$PARENT/$SUB_PARENT/cds |
| 24 | |
| 25 | cd $CDS_DATA_PATH |
| 26 | export LOCAL_IP=$(ip -4 addr show docker0 | grep -Po 'inet \K[\d.]+') |
| 27 | unset http_proxy https_proxy |
| 28 | |
| 29 | #cd $WORKSPACE/archives/cds/ms/blueprintsprocessor/distribution/src/main/dc/ |
| 30 | |
| 31 | ############# update ip of sdnc in docker-compose########### |
| 32 | SDNC_CONTAINER=$(docker ps -a -q --filter="name=sdnc_controller_container") |
| 33 | SDNC_CONTAINER_IP=$(docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $SDNC_CONTAINER) |
| 34 | echo " " >> docker-compose.yaml |
| 35 | echo " extra_hosts:" >> docker-compose.yaml |
| 36 | echo " - 'sdnc:$LOCAL_IP'" >> docker-compose.yaml |
| 37 | ############################################################# |
| 38 | |
| 39 | docker-compose up -d |
| 40 | sleep 10 |
| 41 | ################# Check state of BP #################### |
| 42 | BP_CONTAINER=$(docker ps -a -q --filter="name=bp-rest") |
| 43 | CCSDK_MARIADB=$(docker ps -a -q --filter="name=ccsdk-mariadb") |
| 44 | for i in {1..10}; do |
| 45 | if [ $(docker inspect --format='{{ .State.Running }}' $BP_CONTAINER) ] && \ |
| 46 | [ $(docker inspect --format='{{ .State.Running }}' $CCSDK_MARIADB) ] |
| 47 | then |
| 48 | echo "Blueprint proc Service Running" |
| 49 | break |
| 50 | else |
| 51 | echo sleep $i |
| 52 | sleep $i |
| 53 | fi |
| 54 | done |
| 55 | |