From 0245b4b25908eab4f29c3436fab9a7cf6ca59527 Mon Sep 17 00:00:00 2001 From: Bryan Sullivan Date: Thu, 14 Dec 2017 21:41:31 -0800 Subject: Containerize kafka server JIRA: VES-2 Change-Id: Idc2db4b99de7d2757a7907f3170e58ae9a38f8b5 Signed-off-by: Bryan Sullivan --- build/ves-agent.sh | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'build/ves-agent.sh') diff --git a/build/ves-agent.sh b/build/ves-agent.sh index b3d3616..87d4b07 100644 --- a/build/ves-agent.sh +++ b/build/ves-agent.sh @@ -15,10 +15,15 @@ # #. What this is: Build script for the VES Agent docker image on Ubuntu. #. +#. Prerequisites: +#. Docker hub user logged in e.g. via "sudo docker login" +#. #. Usage: #. bash ves-agent.sh #. hub-user: username for dockerhub -#. hub-pass: password for dockerhub +#. +#. NOTE: To allow patch testing, this script will not reclone the VES repo +#. if it exists under /tmp #. #. Status: this is a work in progress, under test. @@ -28,13 +33,15 @@ sudo apt-get update echo; echo "$0 $(date): Starting VES agent build process" if [[ -d /tmp/ves ]]; then rm -rf /tmp/ves; fi -echo; echo "$0 $(date): Cloning VES repo to /tmp/ves" -git clone https://gerrit.opnfv.org/gerrit/ves /tmp/ves +echo; echo "$0 $(date): Starting VES kafka build process" +if [[ ! -d /tmp/ves ]]; then + echo; echo "$0 $(date): Cloning VES repo to /tmp/ves" + git clone https://gerrit.opnfv.org/gerrit/ves /tmp/ves +fi echo; echo "$0 $(date): Building the image" cd /tmp/ves/build/ves-agent sudo docker build -t ves-agent . -sudo docker login -u $1 -p $2 echo; echo "$0 $(date): Tagging the image" id=$(sudo docker images | grep ves-agent | awk '{print $3}') -- cgit 1.2.3-korg