diff options
author | Jaroslav Henner <jhenner@redhat.com> | 2015-10-17 22:40:40 +0200 |
---|---|---|
committer | Jaroslav Henner <jhenner@redhat.com> | 2015-10-20 12:19:31 +0200 |
commit | 2679d760c8abbb1140f82582329dfdc8be835a76 (patch) | |
tree | fe27a448e85eb5a0d5b4fbded4243e306518279b | |
parent | 14598f3a9cd7998a35a127832349f3ec57f4684b (diff) | |
download | openshift-2679d760c8abbb1140f82582329dfdc8be835a76.tar.gz openshift-2679d760c8abbb1140f82582329dfdc8be835a76.tar.bz2 openshift-2679d760c8abbb1140f82582329dfdc8be835a76.tar.xz openshift-2679d760c8abbb1140f82582329dfdc8be835a76.zip |
Increase sleep when waiting for IP.
It was timeouting on slower hardware.
-rw-r--r-- | playbooks/libvirt/openshift-cluster/tasks/launch_instances.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/playbooks/libvirt/openshift-cluster/tasks/launch_instances.yml b/playbooks/libvirt/openshift-cluster/tasks/launch_instances.yml index 2a0c90b46..4b91c6da8 100644 --- a/playbooks/libvirt/openshift-cluster/tasks/launch_instances.yml +++ b/playbooks/libvirt/openshift-cluster/tasks/launch_instances.yml @@ -64,7 +64,7 @@ register: nb_allocated_ips until: nb_allocated_ips.stdout == '{{ instances | length }}' retries: 60 - delay: 1 + delay: 3 when: instances | length != 0 - name: Collect IP addresses of the VMs |