3117858dcd
* For Debian/RedHat OS families (with NetworkManager/dhclient/resolvconf optionally enabled) prepend /etc/resolv.conf with required nameservers, options, and supersede domain and search domains via the dhclient/resolvconf hooks. * Drop (z)nodnsupdate dhclient hook and re-implement it to complement the resolvconf -u command, which is distro/cloud provider specific. Update docs as well. * Enable network restart to apply and persist changes and simplify handlers to rely on network restart only. This fixes DNS resolve for hostnet K8s pods for Red Hat OS family. Skip network restart for canal/calico plugins, unless https://github.com/projectcalico/felix/issues/1185 fixed. * Replace linefiles line plus with_items to block mode as it's faster. Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com> Co-authored-by: Matthew Mosesohn <mmosesohn@mirantis.com>
64 lines
1.7 KiB
YAML
64 lines
1.7 KiB
YAML
---
|
|
- name: create temporary resolveconf cloud init file
|
|
command: cp -f /etc/resolv.conf "{{ resolvconffile }}"
|
|
when: ansible_os_family == "CoreOS"
|
|
|
|
- name: Remove search/domain/nameserver options
|
|
lineinfile:
|
|
dest: "{{item[0]}}"
|
|
state: absent
|
|
regexp: "^{{ item[1] }}.*$"
|
|
backup: yes
|
|
follow: yes
|
|
with_nested:
|
|
- "{{ [resolvconffile] + [base|default('')] + [head|default('')] }}"
|
|
- [ 'search ', 'nameserver ', 'domain ', 'options ' ]
|
|
notify: Preinstall | restart network
|
|
|
|
- name: Add domain/search/nameservers to resolv.conf
|
|
blockinfile:
|
|
dest: "{{resolvconffile}}"
|
|
block: |-
|
|
{% for item in [domainentry] + [searchentries] + nameserverentries.split(',') -%}
|
|
{{ item }}
|
|
{% endfor %}
|
|
state: present
|
|
insertbefore: BOF
|
|
create: yes
|
|
backup: yes
|
|
follow: yes
|
|
marker: "# Ansible entries {mark}"
|
|
notify: Preinstall | restart network
|
|
|
|
- name: Add options to resolv.conf
|
|
lineinfile:
|
|
line: options {{ item }}
|
|
dest: "{{resolvconffile}}"
|
|
state: present
|
|
regexp: "^options.*{{ item }}$"
|
|
insertafter: EOF
|
|
backup: yes
|
|
follow: yes
|
|
with_items:
|
|
- ndots:{{ ndots }}
|
|
- timeout:2
|
|
- attempts:2
|
|
notify: Preinstall | restart network
|
|
|
|
- name: get temporary resolveconf cloud init file content
|
|
command: cat {{ resolvconffile }}
|
|
register: cloud_config
|
|
when: ansible_os_family == "CoreOS"
|
|
|
|
- name: persist resolvconf cloud init file
|
|
template:
|
|
dest: "{{resolveconf_cloud_init_conf}}"
|
|
src: resolvconf.j2
|
|
owner: root
|
|
mode: 0644
|
|
notify: Preinstall | update resolvconf for CoreOS
|
|
when: ansible_os_family == "CoreOS"
|
|
|
|
- include: dhclient-hooks.yml
|
|
when: ansible_os_family != "CoreOS"
|
|
tags: [bootstrap-os, resolvconf]
|