2015-10-03 20:19:50 +00:00
|
|
|
---
|
|
|
|
- name: populate inventory into hosts file
|
|
|
|
lineinfile:
|
|
|
|
dest: /etc/hosts
|
|
|
|
regexp: "^{{ hostvars[item].ansible_default_ipv4.address }} {{ item }}$"
|
|
|
|
line: "{{ hostvars[item].ansible_default_ipv4.address }} {{ item }}"
|
|
|
|
state: present
|
2015-12-24 18:18:29 +00:00
|
|
|
backup: yes
|
2015-10-03 20:19:50 +00:00
|
|
|
when: hostvars[item].ansible_default_ipv4.address is defined
|
|
|
|
with_items: groups['all']
|
|
|
|
|
2015-12-15 14:20:08 +00:00
|
|
|
- name: populate kubernetes loadbalancer address into hosts file
|
|
|
|
lineinfile:
|
|
|
|
dest: /etc/hosts
|
|
|
|
regexp: ".*{{ apiserver_loadbalancer_domain_name }}$"
|
|
|
|
line: "{{ loadbalancer_apiserver.address }} lb-apiserver.kubernetes.local"
|
|
|
|
state: present
|
2015-12-24 18:18:29 +00:00
|
|
|
backup: yes
|
2015-12-15 15:51:55 +00:00
|
|
|
when: loadbalancer_apiserver is defined and apiserver_loadbalancer_domain_name is defined
|
2015-12-15 14:20:08 +00:00
|
|
|
|
2015-10-03 20:19:50 +00:00
|
|
|
- name: clean hosts file
|
|
|
|
lineinfile:
|
|
|
|
dest: /etc/hosts
|
|
|
|
regexp: "{{ item }}"
|
|
|
|
state: absent
|
2015-12-24 18:18:29 +00:00
|
|
|
backup: yes
|
2015-10-03 20:19:50 +00:00
|
|
|
with_items:
|
|
|
|
- '^127\.0\.0\.1(\s+){{ inventory_hostname }}.*'
|
|
|
|
- '^::1(\s+){{ inventory_hostname }}.*'
|
|
|
|
|
|
|
|
- name: ensure dnsmasq.d directory exists
|
|
|
|
file:
|
|
|
|
path: /etc/dnsmasq.d
|
|
|
|
state: directory
|
2015-12-11 10:48:43 +00:00
|
|
|
when: inventory_hostname in groups['kube-master']
|
2015-10-03 20:19:50 +00:00
|
|
|
|
|
|
|
- name: configure dnsmasq
|
|
|
|
template:
|
|
|
|
src: 01-kube-dns.conf.j2
|
|
|
|
dest: /etc/dnsmasq.d/01-kube-dns.conf
|
|
|
|
mode: 755
|
2015-12-24 18:18:29 +00:00
|
|
|
backup: yes
|
2015-12-11 10:48:43 +00:00
|
|
|
when: inventory_hostname in groups['kube-master']
|
2015-10-03 20:19:50 +00:00
|
|
|
|
2015-12-30 12:21:48 +00:00
|
|
|
- name: create dnsmasq pod template
|
|
|
|
template: src=dnsmasq-pod.yml dest=/etc/kubernetes/manifests/dnsmasq-pod.manifest
|
|
|
|
when: inventory_hostname in groups['kube-master']
|
|
|
|
|
|
|
|
- name: Check for dnsmasq port
|
|
|
|
wait_for:
|
|
|
|
port: 53
|
|
|
|
delay: 5
|
|
|
|
timeout: 100
|
|
|
|
when: inventory_hostname in groups['kube-master']
|
|
|
|
|
|
|
|
|
2015-10-03 20:19:50 +00:00
|
|
|
- name: update resolv.conf with new DNS setup
|
|
|
|
template:
|
|
|
|
src: resolv.conf.j2
|
|
|
|
dest: /etc/resolv.conf
|
|
|
|
mode: 644
|
|
|
|
|
|
|
|
- name: disable resolv.conf modification by dhclient
|
2015-12-24 18:18:29 +00:00
|
|
|
copy: src=dhclient_nodnsupdate dest=/etc/dhcp/dhclient-enter-hooks.d/nodnsupdate mode=u+x backup=yes
|
2015-12-11 10:48:43 +00:00
|
|
|
|
|
|
|
- meta: flush_handlers
|