Remove Restriction on Total Docker Builds per Node 15/43215/1
authorTrevor Bramwell <tbramwell@linuxfoundation.org>
Tue, 26 Sep 2017 18:36:22 +0000 (11:36 -0700)
committerTrevor Bramwell <tbramwell@linuxfoundation.org>
Tue, 26 Sep 2017 18:38:56 +0000 (11:38 -0700)
The docker build script will only allow one docker build at a time. As
docker builds are now restricted to one per-node by project through the
throttle-build plugin, this restriction can be lifted.

JIRA: RELENG-315

Change-Id: I4c430f99eaaed831fa0c49284280a8fa9fbe13c8
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
jjb/releng/opnfv-docker.sh

index b03505e..954d7c8 100644 (file)
@@ -17,17 +17,6 @@ echo "Starting opnfv-docker for $DOCKER_REPO_NAME ..."
 echo "--------------------------------------------------------"
 echo
 
-count=30 # docker build jobs might take up to ~30 min
-while [[ -n `ps -ef|grep 'docker build'|grep -v grep` ]]; do
-    echo "Build in progress. Waiting..."
-    sleep 60
-    count=$(( $count - 1 ))
-    if [ $count -eq 0 ]; then
-        echo "Timeout. Aborting..."
-        exit 1
-    fi
-done
-
 # Remove previous running containers if exist
 if [[ -n "$(docker ps -a | grep $DOCKER_REPO_NAME)" ]]; then
     echo "Removing existing $DOCKER_REPO_NAME containers..."