nsb_setup: parametrize docker image 93/56493/3
authorRoss Brattain <ross.b.brattain@intel.com>
Wed, 25 Apr 2018 14:47:35 +0000 (07:47 -0700)
committerRoss Brattain <ross.b.brattain@intel.com>
Thu, 26 Apr 2018 04:58:18 +0000 (04:58 +0000)
The user may need to pull a different image stable or a
tagged release version.

Since we can't pull a tagged image before it is tagged
just give up and make it an argument

JIRA: YARDSTICK-1137

Change-Id: I0caf0f8915c191786c7db6d929be2fa350a545af
Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
ansible/nsb_setup.yml
nsb_setup.sh

index 98a59f9..92f5d83 100644 (file)
@@ -37,7 +37,7 @@
         name: yardstick
         pull: yes
         recreate: yes
-        image: opnfv/yardstick:latest
+        image: "{{ yardstick_docker_image|default('opnfv/yardstick:latest') }}"
         state: started
         restart_policy: always
         privileged: yes
index 50fc017..86796c4 100755 (executable)
@@ -67,8 +67,16 @@ pip install ansible==2.4.2 shade==1.22.2 docker-py==1.10.6
 
 ANSIBLE_SCRIPTS="ansible"
 
+if [[ -n ${1} ]]; then
+    yardstick_docker_image="-e yardstick_docker_image=${1}"
+else
+    yardstick_docker_image=""
+fi
+
+# no quotes for yardstick_docker_image so when empty it is removed as whitespace
 cd ${ANSIBLE_SCRIPTS} &&\
 ansible-playbook \
          -e img_property="nsb" \
+         ${yardstick_docker_image} \
          -e YARD_IMG_ARCH='amd64' ${extra_args}\
          -i yardstick-install-inventory.ini nsb_setup.yml