Adjust timeouts for installing requrements 11/60111/1
authorCristina Pauna <cristina.pauna@enea.com>
Mon, 23 Jul 2018 08:58:32 +0000 (11:58 +0300)
committerCristina Pauna <cristina.pauna@enea.com>
Mon, 23 Jul 2018 11:02:38 +0000 (14:02 +0300)
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>
ansible/roles/install_yardstick/tasks/main.yml

index 0975efa..203acc3 100644 (file)
@@ -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: