copy template dnsmasq pod and remove handlers

This commit is contained in:
Smaine Kahlouch 2015-12-30 13:21:48 +01:00
parent 2bd6b83656
commit e0f460d9b5
2 changed files with 12 additions and 6 deletions

View file

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

View file

@ -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