2016-01-20 16:37:23 +00:00
|
|
|
---
|
2020-04-16 13:12:45 +00:00
|
|
|
- name: Hosts | create list from inventory
|
|
|
|
set_fact:
|
|
|
|
etc_hosts_inventory_block: |-
|
2021-04-29 12:20:50 +00:00
|
|
|
{% for item in (groups['k8s_cluster'] + groups['etcd']|default([]) + groups['calico_rr']|default([]))|unique -%}
|
2020-04-16 13:12:45 +00:00
|
|
|
{% if 'access_ip' in hostvars[item] or 'ip' in hostvars[item] or 'ansible_default_ipv4' in hostvars[item] -%}
|
|
|
|
{{ hostvars[item]['access_ip'] | default(hostvars[item]['ip'] | default(hostvars[item]['ansible_default_ipv4']['address'])) }}
|
2022-01-11 09:03:16 +00:00
|
|
|
{%- if ('ansible_hostname' in hostvars[item] and item != hostvars[item]['ansible_hostname']) %} {{ hostvars[item]['ansible_hostname'] }}.{{ dns_domain }} {{ hostvars[item]['ansible_hostname'] }} {% else %} {{ item }}.{{ dns_domain }} {{ item }} {% endif %}
|
|
|
|
|
2019-03-05 11:04:39 +00:00
|
|
|
{% endif %}
|
2016-09-14 15:14:26 +00:00
|
|
|
{% endfor %}
|
2020-04-16 13:12:45 +00:00
|
|
|
delegate_to: localhost
|
2020-06-25 15:14:38 +00:00
|
|
|
connection: local
|
2020-04-16 13:12:45 +00:00
|
|
|
delegate_facts: yes
|
|
|
|
run_once: yes
|
|
|
|
|
|
|
|
- name: Hosts | populate inventory into hosts file
|
|
|
|
blockinfile:
|
|
|
|
path: /etc/hosts
|
|
|
|
block: "{{ hostvars.localhost.etc_hosts_inventory_block }}"
|
2016-01-20 16:37:23 +00:00
|
|
|
state: present
|
2016-02-23 12:04:58 +00:00
|
|
|
create: yes
|
2016-01-20 16:37:23 +00:00
|
|
|
backup: yes
|
[jjo] add DIND support to contrib/ (#3468)
* [jjo] add DIND support to contrib/
- add contrib/dind with ansible playbook to
create "node" containers, and setup them to mimic
host nodes as much as possible (using Ubuntu images),
see contrib/dind/README.md
- nodes' /etc/hosts editing via `blockinfile` and
`lineinfile` need `unsafe_writes: yes` because /etc/hosts
are mounted by docker, and thus can't be handled atomically
(modify copy + rename)
* dind-host role: set node container hostname on creation
* add "Resulting deployment" section with some CLI outputs
* typo
* selectable node_distro: debian, ubuntu
* some fixes for node_distro: ubuntu
* cpu optimization: add early `pkill -STOP agetty`
* typo
* add centos dind support ;)
* add kubespray-dind.yaml, support fedora
- add kubespray-dind.yaml (former custom.yaml at README.md)
- rework README.md as per above
- use some YAML power to share distros' commonality
- add fedora support
* create unique /etc/machine-id and other updates
- create unique /etc/machine-id in each docker node,
used as seed for e.g. weave mac addresses
- with above, now netchecker 100% passes WoHooOO!
:tada: :tada: :tada:
- updated README.md output from (1.12.1, verified
netcheck)
* minor typos
* fix centos node creation, needs earlier udevadm removal to avoid flaky facts, also verified netcheck Ok \o/
* add Q&D test-distros.sh, back to manual /etc/machine-id hack
* run-test-distros.sh cosmetics and minor fixes
* run-test-distros.sh: $rc fix and minor formatting changes
* run-test-distros.sh output cosmetics
2018-10-15 07:44:02 +00:00
|
|
|
unsafe_writes: yes
|
2016-09-14 15:14:26 +00:00
|
|
|
marker: "# Ansible inventory hosts {mark}"
|
2021-07-12 07:00:47 +00:00
|
|
|
mode: 0644
|
2017-06-30 12:17:03 +00:00
|
|
|
when: populate_inventory_to_hosts_file
|
2016-01-20 16:37:23 +00:00
|
|
|
|
|
|
|
- name: Hosts | populate kubernetes loadbalancer address into hosts file
|
|
|
|
lineinfile:
|
|
|
|
dest: /etc/hosts
|
|
|
|
regexp: ".*{{ apiserver_loadbalancer_domain_name }}$"
|
2022-01-03 09:37:00 +00:00
|
|
|
line: "{{ loadbalancer_apiserver.address }} {{ apiserver_loadbalancer_domain_name }}"
|
2016-01-20 16:37:23 +00:00
|
|
|
state: present
|
|
|
|
backup: yes
|
[jjo] add DIND support to contrib/ (#3468)
* [jjo] add DIND support to contrib/
- add contrib/dind with ansible playbook to
create "node" containers, and setup them to mimic
host nodes as much as possible (using Ubuntu images),
see contrib/dind/README.md
- nodes' /etc/hosts editing via `blockinfile` and
`lineinfile` need `unsafe_writes: yes` because /etc/hosts
are mounted by docker, and thus can't be handled atomically
(modify copy + rename)
* dind-host role: set node container hostname on creation
* add "Resulting deployment" section with some CLI outputs
* typo
* selectable node_distro: debian, ubuntu
* some fixes for node_distro: ubuntu
* cpu optimization: add early `pkill -STOP agetty`
* typo
* add centos dind support ;)
* add kubespray-dind.yaml, support fedora
- add kubespray-dind.yaml (former custom.yaml at README.md)
- rework README.md as per above
- use some YAML power to share distros' commonality
- add fedora support
* create unique /etc/machine-id and other updates
- create unique /etc/machine-id in each docker node,
used as seed for e.g. weave mac addresses
- with above, now netchecker 100% passes WoHooOO!
:tada: :tada: :tada:
- updated README.md output from (1.12.1, verified
netcheck)
* minor typos
* fix centos node creation, needs earlier udevadm removal to avoid flaky facts, also verified netcheck Ok \o/
* add Q&D test-distros.sh, back to manual /etc/machine-id hack
* run-test-distros.sh cosmetics and minor fixes
* run-test-distros.sh: $rc fix and minor formatting changes
* run-test-distros.sh output cosmetics
2018-10-15 07:44:02 +00:00
|
|
|
unsafe_writes: yes
|
2017-04-26 12:11:13 +00:00
|
|
|
when:
|
|
|
|
- loadbalancer_apiserver is defined
|
|
|
|
- loadbalancer_apiserver.address is defined
|
2016-01-20 16:37:23 +00:00
|
|
|
|
2018-08-22 10:10:49 +00: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 12:06:07 +00:00
|
|
|
etc_hosts_localhosts_dict: >-
|
2020-06-29 19:39:59 +00:00
|
|
|
{%- set splitted = (item | regex_replace('[ \t]+', ' ')|regex_replace('#.*$')|trim).split( ' ') -%}
|
|
|
|
{{ etc_hosts_localhosts_dict|default({}) | combine({splitted[0]: splitted[1::] }) }}
|
2019-04-24 05:20:00 +00:00
|
|
|
with_items: "{{ (etc_hosts_content['content'] | b64decode).splitlines() }}"
|
2018-08-22 10:10:49 +00:00
|
|
|
when:
|
|
|
|
- etc_hosts_content.content is defined
|
2018-10-17 19:27:11 +00:00
|
|
|
- (item is match('^::1 .*') or item is match('^127.0.0.1 .*'))
|
2018-08-22 10:10:49 +00:00
|
|
|
|
|
|
|
- name: Hosts | Update target hosts file entries dict with required entries
|
|
|
|
set_fact:
|
|
|
|
etc_hosts_localhosts_dict_target: >-
|
2018-08-31 14:33:18 +00:00
|
|
|
{%- set target_entries = (etc_hosts_localhosts_dict|default({})).get(item.key, []) | difference(item.value.get('unexpected' ,[])) -%}
|
2018-08-24 12:06:07 +00:00
|
|
|
{{ etc_hosts_localhosts_dict_target|default({}) | combine({item.key: (target_entries + item.value.expected)|unique}) }}
|
2021-04-05 20:45:19 +00:00
|
|
|
loop: "{{ etc_hosts_localhost_entries|dict2items }}"
|
2016-01-20 16:37:23 +00:00
|
|
|
|
2018-08-22 10:10:49 +00:00
|
|
|
- name: Hosts | Update (if necessary) hosts file
|
2016-01-20 16:37:23 +00:00
|
|
|
lineinfile:
|
|
|
|
dest: /etc/hosts
|
2018-08-22 10:10:49 +00:00
|
|
|
line: "{{ item.key }} {{ item.value|join(' ') }}"
|
|
|
|
regexp: "^{{ item.key }}.*$"
|
2016-01-20 16:37:23 +00:00
|
|
|
state: present
|
|
|
|
backup: yes
|
[jjo] add DIND support to contrib/ (#3468)
* [jjo] add DIND support to contrib/
- add contrib/dind with ansible playbook to
create "node" containers, and setup them to mimic
host nodes as much as possible (using Ubuntu images),
see contrib/dind/README.md
- nodes' /etc/hosts editing via `blockinfile` and
`lineinfile` need `unsafe_writes: yes` because /etc/hosts
are mounted by docker, and thus can't be handled atomically
(modify copy + rename)
* dind-host role: set node container hostname on creation
* add "Resulting deployment" section with some CLI outputs
* typo
* selectable node_distro: debian, ubuntu
* some fixes for node_distro: ubuntu
* cpu optimization: add early `pkill -STOP agetty`
* typo
* add centos dind support ;)
* add kubespray-dind.yaml, support fedora
- add kubespray-dind.yaml (former custom.yaml at README.md)
- rework README.md as per above
- use some YAML power to share distros' commonality
- add fedora support
* create unique /etc/machine-id and other updates
- create unique /etc/machine-id in each docker node,
used as seed for e.g. weave mac addresses
- with above, now netchecker 100% passes WoHooOO!
:tada: :tada: :tada:
- updated README.md output from (1.12.1, verified
netcheck)
* minor typos
* fix centos node creation, needs earlier udevadm removal to avoid flaky facts, also verified netcheck Ok \o/
* add Q&D test-distros.sh, back to manual /etc/machine-id hack
* run-test-distros.sh cosmetics and minor fixes
* run-test-distros.sh: $rc fix and minor formatting changes
* run-test-distros.sh output cosmetics
2018-10-15 07:44:02 +00:00
|
|
|
unsafe_writes: yes
|
2021-04-28 18:34:50 +00:00
|
|
|
loop: "{{ etc_hosts_localhosts_dict_target|default({})|dict2items }}"
|
2020-04-08 08:27:43 +00:00
|
|
|
|
|
|
|
# gather facts to update ansible_fqdn
|
|
|
|
- name: Update facts
|
|
|
|
setup:
|
|
|
|
gather_subset: min
|