mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-02-12 06:54:46 -03:30
* Adding the var: leave_etc_backup_files * Fix for #11936 - backup: "{{ leave_etc_backup_files }}"
39 lines
1.5 KiB
YAML
39 lines
1.5 KiB
YAML
---
|
|
- name: NetworkManager | Add nameservers to NM configuration
|
|
community.general.ini_file:
|
|
path: /etc/NetworkManager/conf.d/dns.conf
|
|
section: global-dns-domain-*
|
|
option: servers
|
|
value: "{{ nameserverentries | join(',') }}"
|
|
mode: '0600'
|
|
backup: "{{ leave_etc_backup_files }}"
|
|
when:
|
|
- ('127.0.0.53' not in nameserverentries
|
|
or systemd_resolved_enabled.rc != 0)
|
|
notify: Preinstall | update resolvconf for networkmanager
|
|
|
|
- name: Set default dns if remove_default_searchdomains is false
|
|
set_fact:
|
|
default_searchdomains: ["default.svc.{{ dns_domain }}", "svc.{{ dns_domain }}"]
|
|
when: not remove_default_searchdomains | default() | bool or (remove_default_searchdomains | default() | bool and searchdomains | default([]) | length==0)
|
|
|
|
- name: NetworkManager | Add DNS search to NM configuration
|
|
community.general.ini_file:
|
|
path: /etc/NetworkManager/conf.d/dns.conf
|
|
section: global-dns
|
|
option: searches
|
|
value: "{{ (default_searchdomains | default([]) + searchdomains) | join(',') }}"
|
|
mode: '0600'
|
|
backup: "{{ leave_etc_backup_files }}"
|
|
notify: Preinstall | update resolvconf for networkmanager
|
|
|
|
- name: NetworkManager | Add DNS options to NM configuration
|
|
community.general.ini_file:
|
|
path: /etc/NetworkManager/conf.d/dns.conf
|
|
section: global-dns
|
|
option: options
|
|
value: "ndots:{{ ndots }},timeout:{{ dns_timeout | default('2') }},attempts:{{ dns_attempts | default('2') }}"
|
|
mode: '0600'
|
|
backup: "{{ leave_etc_backup_files }}"
|
|
notify: Preinstall | update resolvconf for networkmanager
|