Disable DNSStubListener for Flatcar Linux (#9160)
* Disable DNSStubListener for Flatcar Linux * Fix missing "Flatcar" condition of os_family
This commit is contained in:
parent
f4daf5856e
commit
be5fdab3aa
1 changed files with 4 additions and 0 deletions
|
@ -10,4 +10,8 @@ Domains={{ ([ 'default.svc.' + dns_domain, 'svc.' + dns_domain ] + searchdomains
|
||||||
#MulticastDNS=no
|
#MulticastDNS=no
|
||||||
DNSSEC=no
|
DNSSEC=no
|
||||||
Cache=no-negative
|
Cache=no-negative
|
||||||
|
{% if ansible_os_family in ["Flatcar", "Flatcar Container Linux by Kinvolk"] %}
|
||||||
|
DNSStubListener=no
|
||||||
|
{% else %}
|
||||||
#DNSStubListener=yes
|
#DNSStubListener=yes
|
||||||
|
{% endif %}
|
||||||
|
|
Loading…
Reference in a new issue