Skip to content
Snippets Groups Projects
Commit a44a0990 authored by Matthew Mosesohn's avatar Matthew Mosesohn
Browse files

Enable reset of dnsmasq if manifest or config changes

parent 2f88c9ee
No related branches found
No related tags found
No related merge requests found
......@@ -31,6 +31,7 @@
dest: /etc/dnsmasq.d-available/01-kube-dns.conf
mode: 0755
backup: yes
register: dnsmasq_config
- name: Stat dnsmasq configuration
stat: path=/etc/dnsmasq.d/01-kube-dns.conf
......@@ -55,6 +56,23 @@
register: manifests
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
kube:
name: dnsmasq
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment