blob: b595e6b153646f37530397090236ef9b62ad49b5 [file] [log] [blame]
tragait3ae5ef42019-09-06 11:31:59 +01001#!/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
23CDS_DATA_PATH=$WORKSPACE/plans/$PARENT/$SUB_PARENT/cds
24
25cd $CDS_DATA_PATH
26export LOCAL_IP=$(ip -4 addr show docker0 | grep -Po 'inet \K[\d.]+')
27unset 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###########
32SDNC_CONTAINER=$(docker ps -a -q --filter="name=sdnc_controller_container")
33SDNC_CONTAINER_IP=$(docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $SDNC_CONTAINER)
34echo " " >> docker-compose.yaml
35echo " extra_hosts:" >> docker-compose.yaml
36echo " - 'sdnc:$LOCAL_IP'" >> docker-compose.yaml
37#############################################################
38
39docker-compose up -d
40sleep 10
41################# Check state of BP ####################
42BP_CONTAINER=$(docker ps -a -q --filter="name=bp-rest")
43CCSDK_MARIADB=$(docker ps -a -q --filter="name=ccsdk-mariadb")
44for i in {1..10}; do
45if [ $(docker inspect --format='{{ .State.Running }}' $BP_CONTAINER) ] && \
46[ $(docker inspect --format='{{ .State.Running }}' $CCSDK_MARIADB) ]
47then
48 echo "Blueprint proc Service Running"
49 break
50else
51 echo sleep $i
52 sleep $i
53fi
54done
55