c12s-kubespray/roles/kubernetes/preinstall/tasks/0060-resolvconf.yml

59 lines
2 KiB
YAML
Raw Normal View History

---
- name: create temporary resolveconf cloud init file
command: cp -f /etc/resolv.conf "{{ resolvconffile }}"
when: ansible_os_family in ["Flatcar", "Flatcar Container Linux by Kinvolk"]
2017-03-14 18:02:00 +00:00
- name: Add domain/search/nameservers/options to resolv.conf
blockinfile:
path: "{{ resolvconffile }}"
block: |-
{% for item in [domainentry] + [searchentries] + nameserverentries.split(',') -%}
{{ item }}
{% endfor %}
2017-03-14 18:02:00 +00:00
options ndots:{{ ndots }}
options timeout:2
options attempts:2
state: present
insertbefore: BOF
create: yes
backup: yes
marker: "# Ansible entries {mark}"
mode: 0644
notify: Preinstall | propagate resolvconf to k8s components
2017-03-14 18:02:00 +00:00
- name: Remove search/domain/nameserver options before block
replace:
path: "{{ item[0] }}"
2017-03-14 18:02:00 +00:00
regexp: '^{{ item[1] }}[^#]*(?=# Ansible entries BEGIN)'
backup: yes
2017-03-14 18:02:00 +00:00
with_nested:
- "{{ [resolvconffile, base|default(''), head|default('')] | difference(['']) }}"
2017-03-14 18:02:00 +00:00
- [ 'search ', 'nameserver ', 'domain ', 'options ' ]
notify: Preinstall | propagate resolvconf to k8s components
2017-03-14 18:02:00 +00:00
- name: Remove search/domain/nameserver options after block
replace:
path: "{{ item[0] }}"
2017-03-14 18:02:00 +00:00
regexp: '(# Ansible entries END\n(?:(?!^{{ item[1] }}).*\n)*)(?:^{{ item[1] }}.*\n?)+'
replace: '\1'
backup: yes
with_nested:
- "{{ [resolvconffile, base|default(''), head|default('')] | difference(['']) }}"
2017-03-14 18:02:00 +00:00
- [ 'search ', 'nameserver ', 'domain ', 'options ' ]
notify: Preinstall | propagate resolvconf to k8s components
2017-03-14 18:02:00 +00:00
- name: get temporary resolveconf cloud init file content
command: cat {{ resolvconffile }}
register: cloud_config
when: ansible_os_family in ["Flatcar", "Flatcar Container Linux by Kinvolk"]
- name: persist resolvconf cloud init file
template:
dest: "{{ resolveconf_cloud_init_conf }}"
src: resolvconf.j2
owner: root
mode: 0644
notify: Preinstall | update resolvconf for Flatcar Container Linux by Kinvolk
when: ansible_os_family in ["Flatcar", "Flatcar Container Linux by Kinvolk"]