2015-10-03 20:19:50 +00:00
|
|
|
---
|
2017-02-28 14:56:00 +00:00
|
|
|
- include: pre_upgrade.yml
|
|
|
|
|
2016-12-07 15:57:05 +00:00
|
|
|
- name: ensure dnsmasq.d directory exists
|
|
|
|
file:
|
|
|
|
path: /etc/dnsmasq.d
|
|
|
|
state: directory
|
|
|
|
tags: bootstrap-os
|
2015-10-03 20:19:50 +00:00
|
|
|
|
2016-12-07 15:57:05 +00:00
|
|
|
- name: ensure dnsmasq.d-available directory exists
|
|
|
|
file:
|
|
|
|
path: /etc/dnsmasq.d-available
|
|
|
|
state: directory
|
|
|
|
tags: bootstrap-os
|
|
|
|
|
2017-02-07 10:54:07 +00:00
|
|
|
- name: check system nameservers
|
|
|
|
shell: awk '/^nameserver/ {print $NF}' /etc/resolv.conf
|
|
|
|
changed_when: False
|
|
|
|
register: system_nameservers
|
|
|
|
|
|
|
|
- name: init system_and_upstream_dns_servers
|
|
|
|
set_fact:
|
|
|
|
system_and_upstream_dns_servers: "{{ upstream_dns_servers|default([]) }}"
|
|
|
|
|
|
|
|
- name: combine upstream_dns_servers and system nameservers (only for docker_dns)
|
|
|
|
set_fact:
|
|
|
|
system_and_upstream_dns_servers: "{{ system_and_upstream_dns_servers | union(system_nameservers.stdout_lines) | unique }}"
|
|
|
|
when: system_nameservers.stdout != "" and resolvconf_mode != 'host_resolvconf'
|
|
|
|
|
2016-12-07 15:57:05 +00:00
|
|
|
- name: Write dnsmasq configuration
|
|
|
|
template:
|
|
|
|
src: 01-kube-dns.conf.j2
|
|
|
|
dest: /etc/dnsmasq.d-available/01-kube-dns.conf
|
|
|
|
mode: 0755
|
|
|
|
backup: yes
|
2017-02-10 06:40:07 +00:00
|
|
|
register: dnsmasq_config
|
2016-12-07 15:57:05 +00:00
|
|
|
|
2017-03-22 10:02:39 +00:00
|
|
|
- name: Stat dnsmasq link
|
|
|
|
stat:
|
|
|
|
path: /etc/dnsmasq.d-available/01-kube-dns.conf
|
|
|
|
register: dnsmasq_stat
|
|
|
|
|
|
|
|
- name: Stat dnsmasq link
|
2017-02-17 21:22:34 +00:00
|
|
|
stat:
|
|
|
|
path: /etc/dnsmasq.d/01-kube-dns.conf
|
2016-12-07 15:57:05 +00:00
|
|
|
register: sym
|
|
|
|
|
|
|
|
- name: Move previous configuration
|
|
|
|
command: mv /etc/dnsmasq.d/01-kube-dns.conf /etc/dnsmasq.d-available/01-kube-dns.conf.bak
|
|
|
|
changed_when: False
|
|
|
|
when: sym.stat.islnk is defined and sym.stat.islnk == False
|
|
|
|
|
|
|
|
- name: Enable dnsmasq configuration
|
|
|
|
file:
|
|
|
|
src: /etc/dnsmasq.d-available/01-kube-dns.conf
|
|
|
|
dest: /etc/dnsmasq.d/01-kube-dns.conf
|
|
|
|
state: link
|
|
|
|
|
|
|
|
- name: Create dnsmasq manifests
|
2017-02-17 21:22:34 +00:00
|
|
|
template:
|
|
|
|
src: "{{item.file}}"
|
|
|
|
dest: "{{kube_config_dir}}/{{item.file}}"
|
2016-12-07 15:57:05 +00:00
|
|
|
with_items:
|
2017-02-28 14:56:00 +00:00
|
|
|
- {name: dnsmasq, file: dnsmasq-deploy.yml, type: deployment}
|
|
|
|
- {name: dnsmasq, file: dnsmasq-svc.yml, type: svc}
|
|
|
|
- {name: dnsmasq-autoscaler, file: dnsmasq-autoscaler.yml, type: deployment}
|
2016-12-07 15:57:05 +00:00
|
|
|
register: manifests
|
|
|
|
when: inventory_hostname == groups['kube-master'][0]
|
|
|
|
|
|
|
|
- name: Start Resources
|
|
|
|
kube:
|
2017-02-28 14:56:00 +00:00
|
|
|
name: "{{item.item.name}}"
|
2016-12-13 10:43:06 +00:00
|
|
|
namespace: "{{system_namespace}}"
|
2016-12-07 15:57:05 +00:00
|
|
|
kubectl: "{{bin_dir}}/kubectl"
|
|
|
|
resource: "{{item.item.type}}"
|
2016-12-13 10:43:06 +00:00
|
|
|
filename: "{{kube_config_dir}}/{{item.item.file}}"
|
2016-12-07 15:57:05 +00:00
|
|
|
state: "{{item.changed | ternary('latest','present') }}"
|
|
|
|
with_items: "{{ manifests.results }}"
|
|
|
|
when: inventory_hostname == groups['kube-master'][0]
|
|
|
|
|
|
|
|
- name: Check for dnsmasq port (pulling image and running container)
|
|
|
|
wait_for:
|
|
|
|
host: "{{dns_server}}"
|
|
|
|
port: 53
|
2017-03-21 09:31:47 +00:00
|
|
|
timeout: 180
|
|
|
|
when: inventory_hostname == groups['kube-node'][0] and groups['kube-node'][0] in ansible_play_hosts
|
2017-02-28 14:56:00 +00:00
|
|
|
|