97f2a0f096cc6528f12d0a9d5f947d0b5bc7227c
[sim/a1-interface.git] / near-rt-ric-simulator / test / STD_2.0.0 / build_and_start_with_kafka.sh
1 #!/bin/bash
2
3 #  ============LICENSE_START===============================================
4 #  Copyright (C) 2022 Nordix Foundation. All rights reserved.
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 #  ============LICENSE_END=================================================
18 #
19
20 # Script to build and start the container
21 # Make sure to run the simulator with the same arg as this script
22
23 print_usage() {
24     echo "Usage: ./build_and_start.sh duplicate-check|ignore-duplicate kafka-srv|kafka-srv-secure|ignore-kafka-srv"
25     exit 1
26 }
27
28 if [ $# -ne 2 ]; then
29     print_usage
30 fi
31
32 if [ $1 == "duplicate-check" ]; then
33     DUP_CHECK=1
34 elif  [ $1 == "ignore-duplicate" ]; then
35     DUP_CHECK=0
36 else
37     print_usage
38 fi
39
40 if [ $2 == "kafka-srv" ]; then
41     URL="http://localhost:7075"
42 elif  [ $2 == "kafka-srv-secure" ]; then
43     URL="https://localhost:7175"
44 elif  [ $2 == "ignore-kafka-srv" ]; then
45     URL=""
46 else
47     print_usage
48 fi
49
50 URL_FLAG=""
51 if [ ! -z "$URL" ]; then
52     URL_FLAG="-e KAFKA_DISPATCHER_URL=$URL"
53 fi
54
55 # Stop and remove container images if they run
56
57 echo "Stopping A1 simulator image..."
58 docker stop a1StdSimulator > /dev/null 2>&1
59 docker rm -f a1StdSimulator > /dev/null 2>&1
60
61 echo "Stopping kafka dispatcher server image..."
62 docker stop kafkamessagedispatcher > /dev/null 2>&1
63 docker rm -f kafkamessagedispatcher > /dev/null 2>&1
64
65 # Initialize path variables for certificate and build operations
66
67 dirstd2=$PWD
68
69 cd ../../
70 dirnrtsim=$PWD
71
72 cd test/KAFKA_DISPATCHER/
73 dirkafkasrv=$PWD
74
75 # Build containers
76
77 cd $dirnrtsim
78 echo "Building A1 simulator image..."
79 docker build -t a1test .
80
81 if [ ! -z "$URL" ]; then
82     cd $dirkafkasrv
83     echo "Building kafka server image..."
84     docker build -t kafka_dispatcher .
85 fi
86
87 # Run containers
88
89 # Runs kafka server in detached mode
90 # In order to tail logs use:: docker logs -f kafkamessagedispatcher
91 if [ ! -z "$URL" ]; then
92     docker run -d --network host --rm -it -p 7075:7075 -p 7175:7175 -e ALLOW_HTTP=true -e MSG_BROKER_URL=localhost:9092 -e TIME_OUT=30 --volume "$dirkafkasrv/certificate:/usr/src/app/cert" --name kafkamessagedispatcher kafka_dispatcher
93 fi
94
95 # Runs A1 simulator
96 docker run --network host --rm -it -p 8085:8085 -p 8185:8185 -e A1_VERSION=STD_2.0.0 -e ALLOW_HTTP=true -e REMOTE_HOSTS_LOGGING=1 -e DUPLICATE_CHECK=$DUP_CHECK $URL_FLAG --volume "$dirnrtsim/certificate:/usr/src/app/cert" --name a1StdSimulator a1test