X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=wfenginemgrservice%2Fsrc%2Fmain%2Fdocker%2Fbin%2Fentrypoint.sh;h=2a610c00f77cb90fe286f4119c66ee8105004ce2;hb=02aaa54fea0fd1b7cee286def51d2e7da1abc0c5;hp=f5d8d8c1f97fb28d842f77a1e81c59d0b3d21dc2;hpb=b15b381c5fa631699c1a3d27e482d3d77bed6ad8;p=vfc%2Fnfvo%2Fwfengine.git diff --git a/wfenginemgrservice/src/main/docker/bin/entrypoint.sh b/wfenginemgrservice/src/main/docker/bin/entrypoint.sh index f5d8d8c..2a610c0 100644 --- a/wfenginemgrservice/src/main/docker/bin/entrypoint.sh +++ b/wfenginemgrservice/src/main/docker/bin/entrypoint.sh @@ -3,6 +3,36 @@ # $1, $2, $3 etc are passed arguments # $1 is our command CMD=$1 + +if [ -z "$SERVICE_IP" ]; then + export SERVICE_IP=`hostname -i` +fi +echo "SERVICE_IP=$SERVICE_IP" + +if [ -z "$SERVICE_PORT" ]; then + export SERVICE_PORT=10550 +fi +echo "SERVICE_PORT=$SERVICE_PORT" + +if [ -z "$OPENPALETTE_MSB_IP" ]; then + echo "Missing required variable OPENPALETTE_MSB_IP: Microservices Service Bus address :" + exit 1 +fi +if [ -z "$OPENPALETTE_MSB_PORT" ]; then + echo "Missing required variable OPENPALETTE_MSB_PORT: Microservices Service Bus address :" + exit 1 +fi +echo "MSB_ADDR=${OPENPALETTE_MSB_IP}:${OPENPALETTE_MSB_PORT}" + +# Wait for MSB initialization +echo "Wait for MSB initialization" +for i in {1..5}; do + curl -sS -m 1 ${OPENPALETTE_MSB_IP}:${OPENPALETTE_MSB_PORT} > /dev/null && break + sleep $i +done + +curl -X POST --data '{"serviceName": "workflow","version": "v1","url": "/api/workflow/v1/","protocol": "REST","visualRange": "1","nodes": [{"ip": "${SERVICE_IP}","port": "${SERVICE_PORT}","ttl": 0}]}' http://${OPENPALETTE_MSB_IP}:${OPENPALETTE_MSB_PORT}/api/microservices/v1/services -H "Accept: Application/json" -H "Content-Type:application/json" + case "$CMD" in "dev" ) ;;