2016-01-21 00:37:23 +08:00
|
|
|
---
|
|
|
|
- name: Hosts | populate inventory into hosts file
|
2016-09-14 23:14:26 +08:00
|
|
|
blockinfile:
|
2016-01-21 00:37:23 +08:00
|
|
|
dest: /etc/hosts
|
2016-09-14 23:14:26 +08:00
|
|
|
block: |-
|
2017-01-02 20:20:51 +08:00
|
|
|
{% for item in (groups['k8s-cluster'] + groups['etcd'] + groups['calico-rr']|default([]))|unique -%}{{ hostvars[item]['access_ip'] | default(hostvars[item]['ip'] | default(hostvars[item]['ansible_default_ipv4']['address'])) }}{% if (item != hostvars[item]['ansible_hostname']) %} {{ hostvars[item]['ansible_hostname'] }} {{ hostvars[item]['ansible_hostname'] }}.{{ dns_domain }}{% endif %} {{ item }} {{ item }}.{{ dns_domain }}
|
2016-09-14 23:14:26 +08:00
|
|
|
{% endfor %}
|
2016-01-21 00:37:23 +08:00
|
|
|
state: present
|
2016-02-23 20:04:58 +08:00
|
|
|
create: yes
|
2016-01-21 00:37:23 +08:00
|
|
|
backup: yes
|
2016-09-14 23:14:26 +08:00
|
|
|
marker: "# Ansible inventory hosts {mark}"
|
2017-06-30 20:17:03 +08:00
|
|
|
when: populate_inventory_to_hosts_file
|
2016-01-21 00:37:23 +08:00
|
|
|
|
|
|
|
- name: Hosts | populate kubernetes loadbalancer address into hosts file
|
|
|
|
lineinfile:
|
|
|
|
dest: /etc/hosts
|
|
|
|
regexp: ".*{{ apiserver_loadbalancer_domain_name }}$"
|
2017-11-24 00:15:48 +08:00
|
|
|
line: "{{ loadbalancer_apiserver.address }} {{ apiserver_loadbalancer_domain_name }}"
|
2016-01-21 00:37:23 +08:00
|
|
|
state: present
|
|
|
|
backup: yes
|
2017-04-26 20:11:13 +08:00
|
|
|
when:
|
|
|
|
- loadbalancer_apiserver is defined
|
|
|
|
- loadbalancer_apiserver.address is defined
|
2016-01-21 00:37:23 +08:00
|
|
|
|
2018-08-22 18:10:49 +08:00
|
|
|
- name: Hosts | Retrieve hosts file content
|
|
|
|
slurp:
|
|
|
|
src: /etc/hosts
|
|
|
|
register: etc_hosts_content
|
|
|
|
|
|
|
|
- name: Hosts | Extract existing entries for localhost from hosts file
|
|
|
|
set_fact:
|
2018-08-24 20:06:07 +08:00
|
|
|
etc_hosts_localhosts_dict: >-
|
2018-08-28 03:20:57 +08:00
|
|
|
{%- set splitted = (item | regex_replace('[ \t]+', ' ')|regex_replace('#.*$')|trim).split( ' ') -%}
|
2018-08-24 20:06:07 +08:00
|
|
|
{{ etc_hosts_localhosts_dict|default({}) | combine({splitted[0]: splitted[1::] }) }}
|
2018-08-22 18:10:49 +08:00
|
|
|
with_items: "{{ (etc_hosts_content['content'] | b64decode).split('\n') }}"
|
|
|
|
when:
|
|
|
|
- etc_hosts_content.content is defined
|
2018-08-28 03:20:57 +08:00
|
|
|
- (item|match('^::1 .*') or item|match('^127.0.0.1 .*'))
|
2018-08-22 18:10:49 +08:00
|
|
|
|
|
|
|
- name: Hosts | Update target hosts file entries dict with required entries
|
|
|
|
set_fact:
|
|
|
|
etc_hosts_localhosts_dict_target: >-
|
2018-08-31 22:33:18 +08:00
|
|
|
{%- set target_entries = (etc_hosts_localhosts_dict|default({})).get(item.key, []) | difference(item.value.get('unexpected' ,[])) -%}
|
2018-08-24 20:06:07 +08:00
|
|
|
{{ etc_hosts_localhosts_dict_target|default({}) | combine({item.key: (target_entries + item.value.expected)|unique}) }}
|
|
|
|
with_dict: "{{ etc_hosts_localhost_entries }}"
|
2016-01-21 00:37:23 +08:00
|
|
|
|
2018-08-22 18:10:49 +08:00
|
|
|
- name: Hosts | Update (if necessary) hosts file
|
2016-01-21 00:37:23 +08:00
|
|
|
lineinfile:
|
|
|
|
dest: /etc/hosts
|
2018-08-22 18:10:49 +08:00
|
|
|
line: "{{ item.key }} {{ item.value|join(' ') }}"
|
|
|
|
regexp: "^{{ item.key }}.*$"
|
2016-01-21 00:37:23 +08:00
|
|
|
state: present
|
|
|
|
backup: yes
|
2018-08-22 18:10:49 +08:00
|
|
|
with_dict: "{{ etc_hosts_localhosts_dict_target }}"
|