fa35cc02a7
* etcd: etcd-events doesn't depend on etcd_cluster_setup
Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* etcd: remove condition already present on include_tasks
Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* etcd: fix scaling up
Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* etcd: use *access_addresses, do not delegate to etcd[0]
We want to wait for the full cluster to be healthy,
so use all the cluster addresses
Also we should be able to run the playbook when etcd[0] is down
(not tested), so do not delegate to etcd[0]
Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* etcd: use failed_when for health check
unhealthy cluster is expected on first run, so use failed_when
instead of ignore_errors to remove scary red messages
Also use run_once
Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* kubernetes/preinstall: ensure ansible_fqdn is up to date after changing /etc/hosts
Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* kubernetes/master: regenerate apiserver cert if needed
Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
(cherry picked from commit a35b6dc1af
)
66 lines
2.7 KiB
YAML
66 lines
2.7 KiB
YAML
---
|
|
- name: Hosts | populate inventory into hosts file
|
|
blockinfile:
|
|
path: /etc/hosts
|
|
block: |-
|
|
{% for item in (groups['k8s-cluster'] + groups['etcd'] + groups['calico-rr']|default([]))|unique -%}
|
|
{% if 'access_ip' in hostvars[item] or 'ip' in hostvars[item] or fallback_ips[item] != "skip" -%}
|
|
{{ hostvars[item]['access_ip'] | default(hostvars[item]['ip'] | default(fallback_ips[item])) }}
|
|
{%- if ('ansible_hostname' in hostvars[item] and item != hostvars[item]['ansible_hostname']) %} {{ hostvars[item]['ansible_hostname'] }}.{{ dns_domain }} {{ hostvars[item]['ansible_hostname'] }}{% endif %} {{ item }}.{{ dns_domain }} {{ item }}
|
|
{% endif %}
|
|
{% endfor %}
|
|
state: present
|
|
create: yes
|
|
backup: yes
|
|
unsafe_writes: yes
|
|
marker: "# Ansible inventory hosts {mark}"
|
|
when: populate_inventory_to_hosts_file
|
|
|
|
- name: Hosts | populate kubernetes loadbalancer address into hosts file
|
|
lineinfile:
|
|
dest: /etc/hosts
|
|
regexp: ".*{{ apiserver_loadbalancer_domain_name }}$"
|
|
line: "{{ loadbalancer_apiserver.address }} {{ apiserver_loadbalancer_domain_name }}"
|
|
state: present
|
|
backup: yes
|
|
unsafe_writes: yes
|
|
when:
|
|
- loadbalancer_apiserver is defined
|
|
- loadbalancer_apiserver.address is defined
|
|
|
|
- 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:
|
|
etc_hosts_localhosts_dict: >-
|
|
{%- set splitted = (item | regex_replace('[ \t]+', ' ')|regex_replace('#.*$')|trim).split( ' ') -%}
|
|
{{ etc_hosts_localhosts_dict|default({}) | combine({splitted[0]: splitted[1::] }) }}
|
|
with_items: "{{ (etc_hosts_content['content'] | b64decode).splitlines() }}"
|
|
when:
|
|
- etc_hosts_content.content is defined
|
|
- (item is match('^::1 .*') or item is match('^127.0.0.1 .*'))
|
|
|
|
- name: Hosts | Update target hosts file entries dict with required entries
|
|
set_fact:
|
|
etc_hosts_localhosts_dict_target: >-
|
|
{%- set target_entries = (etc_hosts_localhosts_dict|default({})).get(item.key, []) | difference(item.value.get('unexpected' ,[])) -%}
|
|
{{ etc_hosts_localhosts_dict_target|default({}) | combine({item.key: (target_entries + item.value.expected)|unique}) }}
|
|
with_dict: "{{ etc_hosts_localhost_entries }}"
|
|
|
|
- name: Hosts | Update (if necessary) hosts file
|
|
lineinfile:
|
|
dest: /etc/hosts
|
|
line: "{{ item.key }} {{ item.value|join(' ') }}"
|
|
regexp: "^{{ item.key }}.*$"
|
|
state: present
|
|
backup: yes
|
|
unsafe_writes: yes
|
|
with_dict: "{{ etc_hosts_localhosts_dict_target }}"
|
|
|
|
# gather facts to update ansible_fqdn
|
|
- name: Update facts
|
|
setup:
|
|
gather_subset: min
|