Browse Source

Add dns_domain for each host to /etc/hosts

Fixes #754
pull/757/head
Matthew Mosesohn 7 years ago
parent
commit
68ad4ff4d9
1 changed files with 1 additions and 2 deletions
  1. 3
      roles/kubernetes/preinstall/tasks/etchosts.yml

3
roles/kubernetes/preinstall/tasks/etchosts.yml

@ -3,8 +3,7 @@
blockinfile:
dest: /etc/hosts
block: |-
{% for item in groups['all'] -%}
{{ 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'] }}{% endif %} {{ item }}
{% for item in groups['all'] -%}{{ 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 }}
{% endfor %}
state: present
create: yes

Loading…
Cancel
Save