1d235f61593a2f39bc71e35151618897ba2bf06f
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / docker / docker-entrypoint.sh
1 #!/bin/bash
2 #
3 # Copyright 2017 Huawei Technologies Co., Ltd.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17 #
18 # This file was auto-generated by gen-all-dockerfiles.sh; do not modify manually.
19 #
20 # nfvo-driver-vnfm-huawei/target/docker-entrypoint.sh
21 #
22
23 if [ -z "$SERVICE_IP" ]; then
24     export SERVICE_IP=`hostname -i`
25 fi
26 echo
27 echo Environment Variables:
28 echo "SERVICE_IP=$SERVICE_IP"
29
30 if [ -z "$MSB_ADDR" ]; then
31     echo "Missing required variable MSB_ADDR: Microservices Service Bus address <ip>:<port>"
32     exit 1
33 fi
34 echo "MSB_ADDR=$MSB_ADDR"
35 echo
36
37 # Wait for MSB initialization
38 echo Wait for MSB initialization
39 for i in {1..10}; do
40     curl -sS -m 1 $MSB_ADDR > /dev/null && break
41     sleep $i
42 done
43
44 echo
45
46 # Configure service based on docker environment variables
47 ./instance-config.sh
48
49 # Start mysql
50 su mysql -c /usr/bin/mysqld_safe &
51
52 # Perform one-time config
53 if [ ! -e init.log ]; then
54     # Perform workarounds due to defects in release binary
55     ./instance-workaround.sh
56
57     # Init mysql; set root password
58     ./init-mysql.sh
59
60     # microservice-specific one-time initialization
61     ./instance-init.sh
62
63     date > init.log
64 fi
65
66 # Start the microservice
67 ./instance-run.sh
68