blob: ecdd9382afe818454147c0a4f02ad1ff58e7c4d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#!/bin/bash
if [ -z "$SERVICE_IP" ]; then
export SERVICE_IP=`hostname -i`
fi
echo "SERVICE_IP=$SERVICE_IP"
if [ -z "$MSB_ADDR" ]; then
echo "Missing required variable MSB_ADDR: Microservices Service Bus address <ip>:<port>"
exit 1
fi
echo "MSB_ADDR=$MSB_ADDR"
if [ -z "$MYSQL_ADDR" ]; then
echo "Missing required variable MYSQL_ADDR: <ip>:<port>"
exit 1
fi
echo "MYSQL_ADDR=$MYSQL_ADDR"
# Wait for MSB initialization
echo "Wait for MSB initialization"
for i in {1..5}; do
curl -sS -m 1 $MSB_ADDR > /dev/null && break
sleep $i
done
# Wait for DB initialization
echo "Wait for DB initialization"
for i in {1..5}; do
curl -sS -m 1 $MYSQL_ADDR > /dev/null && break
sleep $i
done
# Configure service based on docker environment variables
vfc/gvnfm/vnfmgr/mgr/docker/instance_config.sh
# microservice-specific one-time initialization
vfc/gvnfm/vnfmgr/mgr/docker/instance_init.sh
date > init.log
# Start the microservice
vfc/gvnfm/vnfmgr/mgr/docker/instance_run.sh
|