Configurable HTTP(S) support for VES messaging
[sim/o1-interface.git] / ntsimulator / deploy / tls / set_NTS_IP.sh
1 #!/bin/bash
2 ################################################################################
3 #
4 # Copyright 2020 highstreet technologies GmbH and others
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 ################################################################################
19
20 sleep 30
21
22 if [ "$K8S_DEPLOYMENT" = "true" ]; then
23    NTS_IP=""
24    while true
25     do
26         echo "Trying to set the NTS_IP env var..."
27         if [ -z "$NTS_IP" ]; then
28             s=$HOSTNAME
29             count="$(cut -d'-' -f2 <<<"$s")"
30             id="NTSIM_${count}_SERVICE_HOST"
31             export NTS_IP=$(echo ${!id})
32             echo "NTS_IP=$NTS_IP"
33         else
34             echo "export NTS_IP=$NTS_IP" >> /root/.bashrc
35             source /root/.bashrc
36         fi
37         sleep 10
38     done
39 else
40   echo "Non k8s deployment, not doing anything for the NTS_IP..."
41 fi
42
43 exit 0