Don't modify the config file with sed in the docker entrypoint script
[vfc/gvnfm/vnflcm.git] / lcm / docker / docker-entrypoint.sh
index 90341e8..f467bd2 100755 (executable)
@@ -1,35 +1,13 @@
 #!/bin/bash
 
-if [ -z "$SERVICE_IP" ]; then
-    export SERVICE_IP=`hostname -i`
-fi
-echo "SERVICE_IP=$SERVICE_IP"
-
-if [ -z "$MYSQL_ROOT_PASSWORD" ]; then
-    export MYSQL_ROOT_PASSWORD="root"
-fi
-echo "MYSQL_ROOT_PASSWORD=$MYSQL_ROOT_PASSWORD"
-
-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"
-
-# Wait for MSB initialization
-echo "Wait for MSB initialization"
-for i in {1..20}; do
-    curl -sS -m 1 $MSB_ADDR > /dev/null && break
-    sleep $i
-done
-
 # Configure service based on docker environment variables
-./instance-config.sh
+python vfc/gvnfm/vnflcm/lcm/lcm/pub/config/config.py
+cat vfc/gvnfm/vnflcm/lcm/lcm/pub/config/config.py
 
 # microservice-specific one-time initialization
-./instance-init.sh
+vfc/gvnfm/vnflcm/lcm/docker/instance_init.sh
 
 date > init.log
 
 # Start the microservice
-./instance-run.sh
+vfc/gvnfm/vnflcm/lcm/docker/instance_run.sh