blob: 06eaf543dfab97b9ef89a5aaac98a697f59d4489 [file] [log] [blame]
Gary Wu9abb61c2018-09-27 10:38:50 -07001#!/usr/bin/env bash
Filip Krzywka66e2ad62019-03-20 14:03:02 +01002# ============LICENSE_START=======================================================
3# csit-dcaegen2-collectors-hv-ves
4# ================================================================================
5# Copyright (C) 2018-2019 NOKIA
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# ============LICENSE_END=========================================================
Gary Wu9abb61c2018-09-27 10:38:50 -070019
20set -euo pipefail
21
Jakub Dudyczf344afa2019-03-25 16:04:58 +010022RUN_CSIT_LOCAL=${RUN_CSIT_LOCAL:-false}
23
24if ${RUN_CSIT_LOCAL} ; then
Gary Wu9abb61c2018-09-27 10:38:50 -070025 echo "Building locally - assuming all dependencies are installed"
Jakub Dudyczf344afa2019-03-25 16:04:58 +010026 source env_local.sh
Gary Wu9abb61c2018-09-27 10:38:50 -070027else
28 echo "Default run - install all dependencies"
Gary Wu9abb61c2018-09-27 10:38:50 -070029 pip uninstall -y docker-py
30 pip install docker
31
Filip Krzywka83cb2472019-03-20 13:38:17 +010032 COMPOSE_VERSION=1.23.2
Gary Wu9abb61c2018-09-27 10:38:50 -070033 COMPOSE_LOCATION='/usr/local/bin/docker-compose'
34 sudo curl -L https://github.com/docker/compose/releases/download/${COMPOSE_VERSION}/docker-compose-$(uname -s)-$(uname -m) -o ${COMPOSE_LOCATION}
35 sudo chmod +x ${COMPOSE_LOCATION}
Jakub Dudyczf344afa2019-03-25 16:04:58 +010036 source env.sh
Gary Wu9abb61c2018-09-27 10:38:50 -070037fi
38
39echo "Removing not used docker networks"
40docker network prune -f
41
Gary Wu9abb61c2018-09-27 10:38:50 -070042echo "Creating network for containers: ${CONTAINERS_NETWORK}"
43docker network create ${CONTAINERS_NETWORK}
44
Filip Krzywkad2da2cc2019-03-20 10:42:19 +010045cd collector/ssl
Gary Wu9abb61c2018-09-27 10:38:50 -070046./gen-certs.sh
Filip Krzywkad2da2cc2019-03-20 10:42:19 +010047cd ../..
Gary Wu9abb61c2018-09-27 10:38:50 -070048
49docker-compose up -d
50
51mkdir -p ${WORKSPACE}/archives/containers_logs