diff options
author | Cristina Pauna <cristina.pauna@enea.com> | 2018-07-20 17:44:13 +0300 |
---|---|---|
committer | Cristina Pauna <cristina.pauna@enea.com> | 2018-07-20 17:47:29 +0300 |
commit | 3a67d335d32ba460033ba042c1dd66ea2ab852a1 (patch) | |
tree | cbdcf74c1167bfe25db256139d4978256569ddfd /ansible/roles | |
parent | caee6b2a603388c02e961582d78244a2e9e98372 (diff) |
Increase timeouts for installing requrements
Currently the docker images fails to build on aarch64 because the installation
of the requirements step fails. The failure is caused by the timers which expire
and don't mark the job as finished.
JIRA: ARMBAND-391
Change-Id: Ic84982f81d064af1c27cf776d12a57eadc20957a
Signed-off-by: Cristina Pauna <cristina.pauna@enea.com>
Diffstat (limited to 'ansible/roles')
-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 973b2b027..0975efaea 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: 300 + async: 600 poll: 0 register: pip_installer when: virtual_environment == True @@ -49,7 +49,7 @@ - name: Install Yardstick requirements pip: requirements: "{{ yardstick_dir }}/requirements.txt" - async: 300 + async: 600 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: 100 + retries: 150 - name: Install Yardstick code (venv) pip: |