Switch to DMaaP kafka image
[integration/csit.git] / plans / dcaegen2-collectors-hv-ves / testsuites / setup.sh
1 #!/usr/bin/env bash
2 # ============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=========================================================
19
20 set -euo pipefail
21
22 RUN_CSIT_LOCAL=${RUN_CSIT_LOCAL:-false}
23
24 echo "Replacing obsolete 'docker-py' with 'docker' package"
25 pip uninstall -y docker-py
26 pip install docker
27
28 if ${RUN_CSIT_LOCAL} ; then
29   echo "Local run"
30   source env_local.sh
31 else
32   echo "Default (CI) run"
33   COMPOSE_VERSION=1.23.2
34   COMPOSE_LOCATION='/usr/local/bin/docker-compose'
35   sudo curl -L https://github.com/docker/compose/releases/download/${COMPOSE_VERSION}/docker-compose-$(uname -s)-$(uname -m) -o ${COMPOSE_LOCATION}
36   sudo chmod +x ${COMPOSE_LOCATION}
37   source env.sh
38 fi
39
40 echo "Removing not used docker networks"
41 docker network prune -f
42
43 echo "Creating network for containers: ${CONTAINERS_NETWORK}"
44 docker network create ${CONTAINERS_NETWORK}
45
46 cd collector/ssl
47 ./gen-certs.sh
48 cd ../..
49
50 docker-compose up -d
51 docker images --digests
52
53 mkdir -p ${WORKSPACE}/archives/containers_logs