Browse Source

Gather ansible_default_ipv4 for specific groups (#6318)

pull/5781/head
Qasim Sarfraz 4 years ago
committed by GitHub
parent
commit
16ad344c41
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/kubespray-defaults/tasks/fallback_ips.yml

2
roles/kubespray-defaults/tasks/fallback_ips.yml

@ -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

Loading…
Cancel
Save