2016-01-19 12:34:30 +00:00
#Listen on localhost
2018-10-10 06:29:06 +00:00
{% if dnsmasq_enable_bind_interfaces %}
2016-01-19 12:34:30 +00:00
bind-interfaces
2018-10-10 06:29:06 +00:00
{% endif %}
{% if dnsmasq_listen_address|length > 0 %}
listen-address={{ dnsmasq_listen_address }}
{% endif %}
2015-10-03 20:19:50 +00:00
2018-10-10 06:29:06 +00:00
{% if dnsmasq_addn_hosts|length > 0 %}
addn-hosts={{ dnsmasq_addn_hosts }}
{% endif %}
2015-10-03 20:19:50 +00:00
2018-10-10 06:29:06 +00:00
{% if dnsmasq_enable_strict_order %}
2016-09-22 17:14:51 +00:00
strict-order
2018-10-10 06:29:06 +00:00
{% endif %}
{% if dnsmasq_enable_all_servers %}
all-servers
{% endif %}
2016-09-22 17:14:51 +00:00
# Forward k8s domain to kube-dns
server=/{{ dns_domain }}/{{ skydns_server }}
2016-11-30 13:06:11 +00:00
# Reply NXDOMAIN to bogus domains requests like com.cluster.local.cluster.local
local=/{{ bogus_domains }}
2016-09-22 17:14:51 +00:00
2015-10-03 20:19:50 +00:00
#Set upstream dns servers
2017-05-31 09:11:47 +00:00
{% if dnsmasq_upstream_dns_servers|length > 0 %}
{% for srv in dnsmasq_upstream_dns_servers %}
server={{ srv }}
{% endfor %}
{% endif %}
2017-02-07 10:54:07 +00:00
{% if system_and_upstream_dns_servers|length > 0 %}
{% for srv in system_and_upstream_dns_servers %}
2015-10-03 20:19:50 +00:00
server={{ srv }}
{% endfor %}
2017-01-06 09:21:07 +00: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-10 16:08:26 +00:00
server={{ cloud_resolver }}
2015-10-03 20:19:50 +00:00
{% endif %}
2016-11-30 13:06:11 +00:00
{% if kube_log_level == '4' %}
2016-11-25 10:33:39 +00:00
log-queries
{% endif %}
2018-10-10 06:29:06 +00:00
{% if dnsmasq_enable_no_resolv %}
2017-02-07 10:54:07 +00:00
no-resolv
2018-10-10 06:29:06 +00:00
{% endif %}
{% if dnsmasq_enable_bogus_priv %}
2016-09-29 06:48:32 +00:00
bogus-priv
2018-10-10 06:29:06 +00:00
{% endif %}
{% if dnsmasq_enable_no_negcache %}
2016-09-22 17:14:51 +00:00
no-negcache
2018-10-10 06:29:06 +00:00
{% endif %}
2017-01-19 09:07:37 +00:00
cache-size={{ cache_size }}
dns-forward-max={{ dns_forward_max }}
2018-10-10 06:29:06 +00: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 %}