2020-04-16 22:22:47 +08:00
|
|
|
---
|
|
|
|
# Set 127.0.0.1 as fallback IP if we do not have host facts for host
|
|
|
|
# ansible_default_ipv4 isn't what you think.
|
|
|
|
# Thanks https://medium.com/opsops/ansible-default-ipv4-is-not-what-you-think-edb8ab154b10
|
|
|
|
|
|
|
|
- name: Gather ansible_default_ipv4 from all hosts
|
2023-01-06 03:59:58 +08:00
|
|
|
setup:
|
|
|
|
gather_subset: '!all,network'
|
|
|
|
filter: "ansible_default_ipv4"
|
|
|
|
delegate_to: "{{ item }}"
|
|
|
|
delegate_facts: yes
|
|
|
|
when: hostvars[item].ansible_default_ipv4 is not defined
|
|
|
|
loop: "{{ (groups['k8s_cluster']|default([]) + groups['etcd']|default([]) + groups['calico_rr']|default([])) | unique }}"
|
2020-04-16 22:22:47 +08:00
|
|
|
run_once: yes
|
2023-01-06 03:59:58 +08:00
|
|
|
tags: always
|
2020-04-16 22:22:47 +08:00
|
|
|
|
|
|
|
- name: create fallback_ips_base
|
|
|
|
set_fact:
|
|
|
|
fallback_ips_base: |
|
|
|
|
---
|
2021-04-29 20:20:50 +08:00
|
|
|
{% for item in (groups['k8s_cluster']|default([]) + groups['etcd']|default([]) + groups['calico_rr']|default([]))|unique %}
|
2020-04-16 22:22:47 +08:00
|
|
|
{% set found = hostvars[item].get('ansible_default_ipv4') %}
|
|
|
|
{{ item }}: "{{ found.get('address', '127.0.0.1') }}"
|
|
|
|
{% endfor %}
|
|
|
|
delegate_to: localhost
|
2020-06-25 23:14:38 +08:00
|
|
|
connection: local
|
2020-04-16 22:22:47 +08:00
|
|
|
delegate_facts: yes
|
|
|
|
become: no
|
|
|
|
run_once: yes
|
|
|
|
|
|
|
|
- name: set fallback_ips
|
|
|
|
set_fact:
|
|
|
|
fallback_ips: "{{ hostvars.localhost.fallback_ips_base | from_yaml }}"
|