Enable reset of dnsmasq if manifest or config changes
This commit is contained in:
parent
2f88c9eefe
commit
a44a0990f5
1 changed files with 18 additions and 0 deletions
|
@ -31,6 +31,7 @@
|
||||||
dest: /etc/dnsmasq.d-available/01-kube-dns.conf
|
dest: /etc/dnsmasq.d-available/01-kube-dns.conf
|
||||||
mode: 0755
|
mode: 0755
|
||||||
backup: yes
|
backup: yes
|
||||||
|
register: dnsmasq_config
|
||||||
|
|
||||||
- name: Stat dnsmasq configuration
|
- name: Stat dnsmasq configuration
|
||||||
stat: path=/etc/dnsmasq.d/01-kube-dns.conf
|
stat: path=/etc/dnsmasq.d/01-kube-dns.conf
|
||||||
|
@ -55,6 +56,23 @@
|
||||||
register: manifests
|
register: manifests
|
||||||
when: inventory_hostname == groups['kube-master'][0]
|
when: inventory_hostname == groups['kube-master'][0]
|
||||||
|
|
||||||
|
#FIXME: remove manifests.changed condition if kubernetes/features#124 is implemented
|
||||||
|
- name: Delete existing dnsmasq daemonset
|
||||||
|
kube:
|
||||||
|
name: dnsmasq
|
||||||
|
namespace: "{{system_namespace}}"
|
||||||
|
kubectl: "{{bin_dir}}/kubectl"
|
||||||
|
resource: "{{item.item.type}}"
|
||||||
|
filename: "{{kube_config_dir}}/{{item.item.file}}"
|
||||||
|
kubectl: "{{ bin_dir }}/kubectl"
|
||||||
|
filename: "{{ kube_config_dir }}/weave-net.yml"
|
||||||
|
resource: "ds"
|
||||||
|
namespace: "{{system_namespace}}"
|
||||||
|
state: absent
|
||||||
|
with_items: "{{ manifests.results }}"
|
||||||
|
when: inventory_hostname == groups['kube-master'][0] and item.item.type == "ds" and (manifests.changed or dnsmasq_config.changed)
|
||||||
|
|
||||||
|
|
||||||
- name: Start Resources
|
- name: Start Resources
|
||||||
kube:
|
kube:
|
||||||
name: dnsmasq
|
name: dnsmasq
|
||||||
|
|
Loading…
Reference in a new issue