diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2017-11-20 08:57:01 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-11-20 08:57:01 +0000 |
commit | b77826de37bde8683f15bd758951dfaf8af6402d (patch) | |
tree | 13bbc3417e935a620a2d6835f2cf048cb0021f09 /ansible/build_yardstick_image.yml | |
parent | 31b02e5b95d8b4076ef60667d051a8a1a6b072ba (diff) | |
parent | 7f0f1eaf717f7016d2f9ec5328cf9a0d02104222 (diff) |
Merge "update docker version to 16.04"
Diffstat (limited to 'ansible/build_yardstick_image.yml')
-rw-r--r-- | ansible/build_yardstick_image.yml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/ansible/build_yardstick_image.yml b/ansible/build_yardstick_image.yml index 35d9da45e..d7ac866c2 100644 --- a/ansible/build_yardstick_image.yml +++ b/ansible/build_yardstick_image.yml @@ -29,7 +29,6 @@ sha256sums_url: "{{ lookup('env', 'SHA256SUMS_URL')|default('https://' ~ host ~ '/' ~ sha256sums_path, true) }}" workspace: "{{ lookup('env', 'workspace')|default('/tmp/workspace/yardstick', true) }}" - imgfile: "{{ workspace }}/yardstick-image.img" raw_imgfile_basename: "yardstick-{{ release }}-server.raw" environment: PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/bin @@ -41,6 +40,9 @@ - package: name=parted state=present - set_fact: + imgfile: "{{ workspace }}/yardstick-image.img" + + - set_fact: mountdir: "{{ lookup('env', 'mountdir')|default('/mnt/yardstick', true) }}" - set_fact: @@ -205,6 +207,11 @@ - name: include {{ img_modify_playbook }} include: "{{ img_modify_playbook }}" +- hosts: localhost + tasks: + - name: convert image to image file + command: "qemu-img convert -c -o compat=0.10 -O qcow2 {{ raw_imgfile }} {{ imgfile }}" + - name: run post build tasks include: post_build_yardstick_image.yml @@ -212,4 +219,4 @@ tasks: - debug: - msg: "yardstick image = {{ raw_imgfile }}" + msg: "yardstick image = {{ imgfile }}" |