Merge "Fix node health validation with inventory changes"

This commit is contained in:
Zuul 2018-06-06 20:17:00 +00:00 committed by Gerrit Code Review
commit 1f2ac3528f
1 changed files with 5 additions and 1 deletions

View File

@ -9,10 +9,14 @@
groups:
- pre-upgrade
tasks:
- name: Collect IPs for overcloud nodes
set_fact: ansible_host="{{ hostvars[item]['ansible_host'] }}"
register: oc_ips
with_items: "{{ groups.overcloud }}"
- name: Ping all overcloud nodes
icmp_ping:
host: "{{ item }}"
with_items: "{{ groups.overcloud }}"
with_items: "{{ oc_ips.results | map(attribute='ansible_facts.ansible_host') | list }}"
ignore_errors: true
register: ping_results
- name: Extract failed pings