Browse Source

copy template dnsmasq pod and remove handlers

pull/38/head
Smaine Kahlouch 9 years ago
parent
commit
e0f460d9b5
2 changed files with 12 additions and 6 deletions
  1. 3
      roles/dnsmasq/handlers/main.yml
  2. 15
      roles/dnsmasq/tasks/main.yml

3
roles/dnsmasq/handlers/main.yml

@ -1,3 +0,0 @@
---
- name: restart dnsmasq
command: systemctl restart dnsmasq

15
roles/dnsmasq/tasks/main.yml

@ -28,7 +28,6 @@
- '^127\.0\.0\.1(\s+){{ inventory_hostname }}.*'
- '^::1(\s+){{ inventory_hostname }}.*'
- name: ensure dnsmasq.d directory exists
file:
path: /etc/dnsmasq.d
@ -41,10 +40,20 @@
dest: /etc/dnsmasq.d/01-kube-dns.conf
mode: 755
backup: yes
notify:
- restart dnsmasq
when: inventory_hostname in groups['kube-master']
- 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']
- name: update resolv.conf with new DNS setup
template:
src: resolv.conf.j2

Loading…
Cancel
Save