Skip to content
Snippets Groups Projects
Unverified Commit becb6267 authored by yun's avatar yun Committed by GitHub
Browse files

Set default remove_default_searchdomains to false (#10533)

parent 34754ccb
Branches
Tags
No related merge requests found
......@@ -5,10 +5,10 @@
DNS={{ ([nodelocaldns_ip] if enable_nodelocaldns else coredns_server )| list | join(' ') }}
{% endif %}
FallbackDNS={{ ( upstream_dns_servers|d([]) + nameservers|d([]) + cloud_resolver|d([])) | unique | join(' ') }}
{% if remove_default_searchdomains is sameas false or (remove_default_searchdomains is sameas true and searchdomains|default([])|length==0)%}
Domains={{ ([ 'default.svc.' + dns_domain, 'svc.' + dns_domain ] + searchdomains|default([])) | join(' ') }}
{% else %}
{% if remove_default_searchdomains is sameas true and searchdomains|default([])|length != 0 %}
Domains={{ searchdomains|default([]) | join(' ') }}
{% else %}
Domains={{ ([ 'default.svc.' + dns_domain, 'svc.' + dns_domain ] + searchdomains|default([])) | join(' ') }}
{% endif %}
#LLMNR=no
#MulticastDNS=no
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment