Don't modify the config file with sed in the docker entrypoint script
[vfc/nfvo/driver/vnfm/svnfm.git] / zte / vmanager / docker / docker-entrypoint.sh
old mode 100644 (file)
new mode 100755 (executable)
index c843b48..20bc97f
@@ -1,25 +1,8 @@
 #!/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"
-
-# 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
-vfc/nfvo/driver/vnfm/svnfm/zte/vmanager/docker/instance_config.sh
+python vfc/nfvo/driver/vnfm/svnfm/zte/vmanager/driver/pub/config/config.py
+cat vfc/nfvo/driver/vnfm/svnfm/zte/vmanager/driver/pub/config/config.py
 
 # microservice-specific one-time initialization
 vfc/nfvo/driver/vnfm/svnfm/zte/vmanager/docker/instance_init.sh