2016-01-20 16:37:23 +00:00
|
|
|
---
|
|
|
|
- name: Hosts | populate inventory into hosts file
|
2016-09-14 15:14:26 +00:00
|
|
|
blockinfile:
|
2016-01-20 16:37:23 +00:00
|
|
|
dest: /etc/hosts
|
2016-09-14 15:14:26 +00:00
|
|
|
block: |-
|
2017-01-02 12:20:51 +00: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 15:14:26 +00:00
|
|
|
{% endfor %}
|
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
|
2016-09-14 15:14:26 +00:00
|
|
|
marker: "# Ansible inventory hosts {mark}"
|
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 }}$"
|
|
|
|
line: "{{ loadbalancer_apiserver.address }} {{ apiserver_loadbalancer_domain_name| default('lb-apiserver.kubernetes.local') }}"
|
|
|
|
state: present
|
|
|
|
backup: yes
|
2017-04-26 12:11:13 +00:00
|
|
|
when:
|
|
|
|
- loadbalancer_apiserver is defined
|
|
|
|
- loadbalancer_apiserver.address is defined
|
|
|
|
- apiserver_loadbalancer_domain_name is defined
|
2016-01-20 16:37:23 +00:00
|
|
|
|
|
|
|
- name: Hosts | localhost ipv4 in hosts file
|
|
|
|
lineinfile:
|
|
|
|
dest: /etc/hosts
|
|
|
|
line: "127.0.0.1 localhost localhost.localdomain"
|
|
|
|
regexp: '^127.0.0.1.*$'
|
|
|
|
state: present
|
|
|
|
backup: yes
|
|
|
|
|
|
|
|
- name: Hosts | localhost ipv6 in hosts file
|
|
|
|
lineinfile:
|
|
|
|
dest: /etc/hosts
|
|
|
|
line: "::1 localhost6 localhost6.localdomain"
|
|
|
|
regexp: '^::1.*$'
|
|
|
|
state: present
|
|
|
|
backup: yes
|