diff options
author | Emma Foley <emma.l.foley@intel.com> | 2018-07-23 14:32:29 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-07-23 14:32:29 +0000 |
commit | 6988c5a09a649988225b8ab674d52aab5df6f9a7 (patch) | |
tree | 8b9ef375d0c0c632cf2188174ae9994a44c2d4c4 /ansible/roles/install_yardstick/tasks | |
parent | 29b6e112447ef79827de96414ec6d82c14ae9a37 (diff) | |
parent | 607c423ce35dd2b16c21dc09d0154ae6cef97eae (diff) |
Merge "Adjust timeouts for installing requrements"
Diffstat (limited to 'ansible/roles/install_yardstick/tasks')
-rw-r--r-- | ansible/roles/install_yardstick/tasks/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ansible/roles/install_yardstick/tasks/main.yml b/ansible/roles/install_yardstick/tasks/main.yml index 0975efaea..203acc3e5 100644 --- a/ansible/roles/install_yardstick/tasks/main.yml +++ b/ansible/roles/install_yardstick/tasks/main.yml @@ -41,7 +41,7 @@ pip: requirements: "{{ yardstick_dir }}/requirements.txt" virtualenv: "{{ yardstick_dir }}/virtualenv" - async: 600 + async: 900 poll: 0 register: pip_installer when: virtual_environment == True @@ -49,7 +49,7 @@ - name: Install Yardstick requirements pip: requirements: "{{ yardstick_dir }}/requirements.txt" - async: 600 + async: 900 poll: 0 register: pip_installer when: virtual_environment == False @@ -59,7 +59,7 @@ jid: "{{ pip_installer.ansible_job_id }}" register: job_result until: job_result.finished - retries: 150 + retries: 180 - name: Install Yardstick code (venv) pip: |