diff options
author | Manuel Buil <mbuil@suse.com> | 2019-03-05 15:17:43 +0100 |
---|---|---|
committer | Manuel Buil <mbuil@suse.com> | 2019-03-05 15:17:43 +0100 |
commit | 19d8e5da9562ee17a9a4e1e9c75c2d1cc4183667 (patch) | |
tree | 2118eca6362a7a6a4dc35d73fc5a226e92c56aad /xci | |
parent | d5e4d8b5f09b0bfab483aa24208e26efcde164d4 (diff) |
Increase timeout
Baremetal is failing because ironic takes long to transfer the image to the
hard drive of the nodes
Change-Id: Ief704e92307d1ea7fe55ee0268abae49e0126503
Signed-off-by: Manuel Buil <mbuil@suse.com>
Diffstat (limited to 'xci')
-rw-r--r-- | xci/infra/bifrost/playbooks/wait-for-baremetal.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xci/infra/bifrost/playbooks/wait-for-baremetal.yml b/xci/infra/bifrost/playbooks/wait-for-baremetal.yml index cb42cc49..96aab29c 100644 --- a/xci/infra/bifrost/playbooks/wait-for-baremetal.yml +++ b/xci/infra/bifrost/playbooks/wait-for-baremetal.yml @@ -9,9 +9,9 @@ gather_facts: False tasks: - name: "Wait for nodes to reboot." - wait_for: state=stopped port=22 host={{ ipv4_address }} timeout=240 + wait_for: state=stopped port=22 host={{ ipv4_address }} timeout=5000 delegate_to: opnfv - name: "Wait for nodes to become available." - wait_for: state=started port=22 host={{ ipv4_address }} timeout=3600 + wait_for: state=started port=22 host={{ ipv4_address }} timeout=5000 delegate_to: opnfv |