2016-01-19 20:34:30 +08:00
#Listen on localhost
2018-10-10 14:29:06 +08:00
{% if dnsmasq_enable_bind_interfaces %}
2016-01-19 20:34:30 +08:00
bind-interfaces
2018-10-10 14:29:06 +08:00
{% endif %}
{% if dnsmasq_listen_address|length > 0 %}
listen-address={{ dnsmasq_listen_address }}
{% endif %}
2015-10-04 04:19:50 +08:00
2018-10-10 14:29:06 +08:00
{% if dnsmasq_addn_hosts|length > 0 %}
addn-hosts={{ dnsmasq_addn_hosts }}
{% endif %}
2015-10-04 04:19:50 +08:00
2018-10-10 14:29:06 +08:00
{% if dnsmasq_enable_strict_order %}
2016-09-23 01:14:51 +08:00
strict-order
2018-10-10 14:29:06 +08:00
{% endif %}
{% if dnsmasq_enable_all_servers %}
all-servers
{% endif %}
2016-09-23 01:14:51 +08:00
# Forward k8s domain to kube-dns
server=/{{ dns_domain }}/{{ skydns_server }}
2016-11-30 21:06:11 +08:00
# Reply NXDOMAIN to bogus domains requests like com.cluster.local.cluster.local
local=/{{ bogus_domains }}
2016-09-23 01:14:51 +08:00
2015-10-04 04:19:50 +08:00
#Set upstream dns servers
2017-05-31 17:11:47 +08:00
{% if dnsmasq_upstream_dns_servers|length > 0 %}
{% for srv in dnsmasq_upstream_dns_servers %}
server={{ srv }}
{% endfor %}
{% endif %}
2017-02-07 18:54:07 +08:00
{% if system_and_upstream_dns_servers|length > 0 %}
{% for srv in system_and_upstream_dns_servers %}
2015-10-04 04:19:50 +08:00
server={{ srv }}
{% endfor %}
2017-01-06 17:21:07 +08:00
{% elif resolvconf_mode == 'host_resolvconf' %}
{# The default resolver is only needed when the hosts resolv.conf was modified by us. If it was not modified, we can rely on dnsmasq to reuse the systems resolv.conf #}
2018-02-11 00:08:26 +08:00
server={{ cloud_resolver }}
2015-10-04 04:19:50 +08:00
{% endif %}
2016-11-30 21:06:11 +08:00
{% if kube_log_level == '4' %}
2016-11-25 18:33:39 +08:00
log-queries
{% endif %}
2018-10-10 14:29:06 +08:00
{% if dnsmasq_enable_no_resolv %}
2017-02-07 18:54:07 +08:00
no-resolv
2018-10-10 14:29:06 +08:00
{% endif %}
{% if dnsmasq_enable_bogus_priv %}
2016-09-29 14:48:32 +08:00
bogus-priv
2018-10-10 14:29:06 +08:00
{% endif %}
{% if dnsmasq_enable_no_negcache %}
2016-09-23 01:14:51 +08:00
no-negcache
2018-10-10 14:29:06 +08:00
{% endif %}
2017-01-19 17:07:37 +08:00
cache-size={{ cache_size }}
dns-forward-max={{ dns_forward_max }}
2018-10-10 14:29:06 +08:00
max-cache-ttl={{ dnsmasq_max_cache_ttl }}
max-ttl={{ dnsmasq_max_ttl }}
log-facility={{ dnsmasq_log_facility }}
{% for dnsmasq_additional_startup_parameter in dnsmasq_additional_startup_parameters %}
{{ dnsmasq_additional_startup_parameter }}
{% endfor %}