2018-03-13 19:00:05 +08:00
|
|
|
---
|
|
|
|
apiVersion: v1
|
|
|
|
kind: ConfigMap
|
|
|
|
metadata:
|
|
|
|
name: coredns
|
2018-03-30 19:29:13 +08:00
|
|
|
namespace: kube-system
|
2018-11-16 01:52:12 +08:00
|
|
|
labels:
|
|
|
|
addonmanager.kubernetes.io/mode: EnsureExists
|
2018-03-13 19:00:05 +08:00
|
|
|
data:
|
|
|
|
Corefile: |
|
|
|
|
.:53 {
|
|
|
|
errors
|
|
|
|
health
|
2019-05-28 21:47:57 +08:00
|
|
|
ready
|
2018-06-14 02:52:35 +08:00
|
|
|
kubernetes {{ dns_domain }} in-addr.arpa ip6.arpa {
|
2018-03-13 19:00:05 +08:00
|
|
|
pods insecure
|
2019-08-01 02:26:15 +08:00
|
|
|
{% if enable_coredns_k8s_endpoint_pod_names %}
|
|
|
|
endpoint_pod_names
|
|
|
|
{% endif %}
|
2018-10-08 22:08:51 +08:00
|
|
|
{% if resolvconf_mode == 'host_resolvconf' and upstream_dns_servers is defined and upstream_dns_servers|length > 0 %}
|
2019-04-09 17:19:06 +08:00
|
|
|
upstream {{ upstream_dns_servers|join(' ') }}
|
2018-10-08 22:08:51 +08:00
|
|
|
{% else %}
|
2018-03-13 19:00:05 +08:00
|
|
|
upstream /etc/resolv.conf
|
2018-10-08 22:08:51 +08:00
|
|
|
{% endif %}
|
2018-03-13 19:00:05 +08:00
|
|
|
fallthrough in-addr.arpa ip6.arpa
|
|
|
|
}
|
|
|
|
prometheus :9153
|
2018-10-08 22:08:51 +08:00
|
|
|
{% if resolvconf_mode == 'host_resolvconf' and upstream_dns_servers is defined and upstream_dns_servers|length > 0 %}
|
2019-06-05 14:27:55 +08:00
|
|
|
forward . {{ upstream_dns_servers|join(' ') }} {
|
|
|
|
prefer_udp
|
|
|
|
}
|
2018-10-08 22:08:51 +08:00
|
|
|
{% else %}
|
2019-06-05 14:27:55 +08:00
|
|
|
forward . /etc/resolv.conf {
|
|
|
|
prefer_udp
|
|
|
|
}
|
2019-07-16 15:53:23 +08:00
|
|
|
{% endif %}
|
|
|
|
{% if enable_coredns_k8s_external %}
|
|
|
|
k8s_external {{ coredns_k8s_external_zone }}
|
2018-10-08 22:08:51 +08:00
|
|
|
{% endif %}
|
2018-03-13 19:00:05 +08:00
|
|
|
cache 30
|
2018-10-11 15:12:58 +08:00
|
|
|
loop
|
|
|
|
reload
|
|
|
|
loadbalance
|
2018-03-13 19:00:05 +08:00
|
|
|
}
|