diff options
author | Cristina Pauna <cristina.pauna@enea.com> | 2018-07-23 11:58:32 +0300 |
---|---|---|
committer | Cristina Pauna <cristina.pauna@enea.com> | 2018-07-23 14:02:38 +0300 |
commit | 607c423ce35dd2b16c21dc09d0154ae6cef97eae (patch) | |
tree | 54a6f24d6a955f4434ed2d10fbfaaf9780b325ce /ansible/roles/install_yardstick/tasks | |
parent | 61d471c367ff61cbac080bd1708decf1b36ad167 (diff) |
Adjust timeouts for installing requrements
The time it takes to install the the requirements is different on the 2 build
servers we have for aarch64: on build4 it takes ~12min, on pod5 it takes <10min.
So the timeouts need to be adjusted again to bigger values to cover both servers.
JIRA: ARMBAND-391
Change-Id: Idd8f07e6f54d64a6cfaee0753ecd8efd141ff615
Signed-off-by: Cristina Pauna <cristina.pauna@enea.com>
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: |