Update version number in container-tag for F Maintenance Release
[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 publish-resp|ignore-publish"
25     exit 1
26 }
27
28 if [ $# -ne 3 ]; 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 else
45     print_usage
46 fi
47
48 if [ $3 == "publish-resp" ]; then
49     PUBLISH_RESP="-e PUBLISH_RESP=1"
50 elif  [ $3 == "ignore-publish" ]; then
51     PUBLISH_RESP=""
52 else
53     print_usage
54 fi
55
56 URL_FLAG=""
57 if [ ! -z "$URL" ]; then
58     URL_FLAG="-e KAFKA_DISPATCHER_URL=$URL"
59 fi
60
61 # Stop and remove container images if they run
62
63 echo "Stopping A1 simulator image..."
64 docker stop a1StdSimulator > /dev/null 2>&1
65 docker rm -f a1StdSimulator > /dev/null 2>&1
66
67 echo "Stopping kafka dispatcher server image..."
68 docker stop kafkamessagedispatcher > /dev/null 2>&1
69 docker rm -f kafkamessagedispatcher > /dev/null 2>&1
70
71 # Initialize path variables for certificate and build operations
72
73 dirstd2=$PWD
74
75 cd ../../
76 dirnrtsim=$PWD
77
78 cd test/KAFKA_DISPATCHER/
79 dirkafkasrv=$PWD
80
81 # Build containers
82
83 cd $dirnrtsim
84 echo "Building A1 simulator image..."
85 docker build -t a1test .
86
87 if [ ! -z "$URL" ]; then
88     cd $dirkafkasrv
89     echo "Building kafka server image..."
90     docker build -t kafka_dispatcher .
91 fi
92
93 # Run containers
94
95 # Runs kafka server in detached mode
96 # In order to tail logs use:: docker logs -f kafkamessagedispatcher
97 if [ ! -z "$URL" ]; then
98     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 $PUBLISH_RESP --volume "$dirkafkasrv/certificate:/usr/src/app/cert" --name kafkamessagedispatcher kafka_dispatcher
99 fi
100
101 # Runs A1 simulator
102 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