diff options
author | Wesley Hearn <wesley.s.hearn@gmail.com> | 2015-08-26 11:01:42 -0400 |
---|---|---|
committer | Wesley Hearn <wesley.s.hearn@gmail.com> | 2015-08-26 11:01:42 -0400 |
commit | 13e8164b651edf999f6a837463eb72e8ed051c3d (patch) | |
tree | 95977c36c6c70f5548e7023ffcc66ab10b2a0825 /playbooks/libvirt/openshift-cluster/tasks | |
parent | 872c45cce659f5a6c22191a685e1e8190549fb1c (diff) | |
parent | ced2ad4551632d93d6a17391913effefe67607b4 (diff) | |
download | openshift-13e8164b651edf999f6a837463eb72e8ed051c3d.tar.gz openshift-13e8164b651edf999f6a837463eb72e8ed051c3d.tar.bz2 openshift-13e8164b651edf999f6a837463eb72e8ed051c3d.tar.xz openshift-13e8164b651edf999f6a837463eb72e8ed051c3d.zip |
Merge pull request #510 from lhuard1A/clustered_etcd_libvirt
Add etcd nodes management in libvirt
Diffstat (limited to 'playbooks/libvirt/openshift-cluster/tasks')
-rw-r--r-- | playbooks/libvirt/openshift-cluster/tasks/launch_instances.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/playbooks/libvirt/openshift-cluster/tasks/launch_instances.yml b/playbooks/libvirt/openshift-cluster/tasks/launch_instances.yml index 4cb494056..2a0c90b46 100644 --- a/playbooks/libvirt/openshift-cluster/tasks/launch_instances.yml +++ b/playbooks/libvirt/openshift-cluster/tasks/launch_instances.yml @@ -63,8 +63,9 @@ shell: 'virsh -c {{ libvirt_uri }} net-dhcp-leases openshift-ansible | egrep -c ''{{ instances | join("|") }}''' register: nb_allocated_ips until: nb_allocated_ips.stdout == '{{ instances | length }}' - retries: 30 + retries: 60 delay: 1 + when: instances | length != 0 - name: Collect IP addresses of the VMs shell: 'virsh -c {{ libvirt_uri }} net-dhcp-leases openshift-ansible | awk ''$6 == "{{ item }}" {gsub(/\/.*/, "", $5); print $5}''' @@ -72,7 +73,7 @@ with_items: instances - set_fact: - ips: "{{ scratch_ip.results | oo_collect('stdout') }}" + ips: "{{ scratch_ip.results | default([]) | oo_collect('stdout') }}" - name: Add new instances add_host: |