Gather ansible_default_ipv4 for specific groups (#6318)

This commit is contained in:
Qasim Sarfraz 2020-06-26 08:55:31 +02:00 committed by GitHub
parent 8ca2a9a7d5
commit 16ad344c41
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@
tags: always
include_tasks: fallback_ips_gather.yml
when: hostvars[delegate_host_to_gather_facts].ansible_default_ipv4 is not defined
loop: "{{ groups['all'] }}"
loop: "{{ groups['k8s-cluster']|default([]) + groups['etcd']|default([]) + groups['calico-rr']|default([]) }}"
loop_control:
loop_var: delegate_host_to_gather_facts
run_once: yes