2015-10-03 20:19:50 +00:00
|
|
|
---
|
|
|
|
- name: ensure dnsmasq.d directory exists
|
|
|
|
file:
|
|
|
|
path: /etc/dnsmasq.d
|
|
|
|
state: directory
|
|
|
|
|
2016-01-09 09:45:50 +00:00
|
|
|
- name: Write dnsmasq configuration
|
2015-10-03 20:19:50 +00:00
|
|
|
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-10-03 20:19:50 +00:00
|
|
|
|
2016-01-09 09:45:50 +00:00
|
|
|
- name: Create dnsmasq pod manifest
|
2015-12-30 12:21:48 +00:00
|
|
|
template: src=dnsmasq-pod.yml dest=/etc/kubernetes/manifests/dnsmasq-pod.manifest
|
|
|
|
|
2016-01-09 09:45:50 +00:00
|
|
|
- name: Check for dnsmasq port (pulling image and running container)
|
2015-12-30 12:21:48 +00:00
|
|
|
wait_for:
|
|
|
|
port: 53
|
|
|
|
delay: 5
|
|
|
|
|
2016-01-05 11:23:14 +00:00
|
|
|
- name: check resolvconf
|
|
|
|
stat: path=/etc/resolvconf/resolv.conf.d/head
|
|
|
|
register: resolvconf
|
|
|
|
|
|
|
|
- name: target resolv.conf file
|
|
|
|
set_fact:
|
2016-01-12 16:56:29 +00:00
|
|
|
resolvconffile: >-
|
|
|
|
{%- if resolvconf.stat.exists == True -%}/etc/resolvconf/resolv.conf.d/head{%- else -%}/etc/resolv.conf{%- endif -%}
|
2016-01-05 11:23:14 +00:00
|
|
|
|
|
|
|
- name: Add search resolv.conf
|
|
|
|
lineinfile:
|
2016-01-19 09:29:33 +00:00
|
|
|
line: "search {{ [ 'default.svc.' + dns_domain, 'svc.' + dns_domain, dns_domain ] | join(' ') }}"
|
2016-01-05 11:23:14 +00:00
|
|
|
dest: "{{resolvconffile}}"
|
|
|
|
state: present
|
2016-01-09 09:45:50 +00:00
|
|
|
insertbefore: BOF
|
2016-01-05 11:23:14 +00:00
|
|
|
backup: yes
|
|
|
|
follow: yes
|
|
|
|
|
2016-01-19 09:29:33 +00:00
|
|
|
- name: Add local dnsmasq to resolv.conf
|
2016-01-05 11:23:14 +00:00
|
|
|
lineinfile:
|
2016-01-19 09:29:33 +00:00
|
|
|
line: "nameserver 127.0.0.1"
|
2016-01-05 11:23:14 +00:00
|
|
|
dest: "{{resolvconffile}}"
|
|
|
|
state: present
|
2016-01-15 09:35:43 +00:00
|
|
|
insertafter: "^search.*$"
|
2016-01-05 11:23:14 +00:00
|
|
|
backup: yes
|
|
|
|
follow: yes
|
2015-10-03 20:19:50 +00:00
|
|
|
|
2016-01-19 09:18:53 +00:00
|
|
|
- name: Add options to resolv.conf
|
|
|
|
lineinfile:
|
|
|
|
line: options {{ item }}
|
|
|
|
dest: "{{resolvconffile}}"
|
|
|
|
state: present
|
|
|
|
regexp: "^options.*{{ item }}$"
|
|
|
|
insertafter: EOF
|
|
|
|
backup: yes
|
|
|
|
follow: yes
|
|
|
|
with_items:
|
2016-01-19 12:49:33 +00:00
|
|
|
- timeout:2
|
2016-01-19 09:18:53 +00:00
|
|
|
- attempts:2
|
|
|
|
|
2015-10-03 20:19:50 +00:00
|
|
|
- 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-31 13:04:08 +00:00
|
|
|
when: ansible_os_family == "Debian"
|
|
|
|
|
|
|
|
- name: disable resolv.conf modification by dhclient
|
|
|
|
copy: src=dhclient_nodnsupdate dest=/etc/dhcp/dhclient.d/nodnsupdate mode=u+x backup=yes
|
|
|
|
when: ansible_os_family == "RedHat"
|
2015-12-11 10:48:43 +00:00
|
|
|
|
2016-01-05 11:23:14 +00:00
|
|
|
- name: update resolvconf
|
|
|
|
command: resolvconf -u
|
|
|
|
changed_when: False
|
|
|
|
when: resolvconf.stat.exists == True
|
|
|
|
|
2015-12-11 10:48:43 +00:00
|
|
|
- meta: flush_handlers
|