68fd7e39da
* Set cluster DNS correctly in case of nodelocal dns cache * Pass in cluster_ip based on dns mode * Disable nodelocaldns by default * Fix syntax error * Fix syntax issue * Add nodelocadns ip to vars of node installation * Change location of nodelocaldns_ip * Try to remove newlines from jinja template * Add debug for config file * Move parameter logic outside of template * Adapt templates after feedback * Remove debugging
55 lines
1.1 KiB
Django/Jinja
55 lines
1.1 KiB
Django/Jinja
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: nodelocaldns
|
|
namespace: kube-system
|
|
labels:
|
|
addonmanager.kubernetes.io/mode: EnsureExists
|
|
|
|
data:
|
|
Corefile: |
|
|
{{ dns_domain }}:53 {
|
|
errors
|
|
cache 30
|
|
reload
|
|
loop
|
|
bind {{ nodelocaldns_ip }}
|
|
forward . {{ forwardTarget }} {
|
|
force_tcp
|
|
}
|
|
prometheus :9253
|
|
health {{ nodelocaldns_ip }}:8080
|
|
}
|
|
in-addr.arpa:53 {
|
|
errors
|
|
cache 30
|
|
reload
|
|
loop
|
|
bind {{ nodelocaldns_ip }}
|
|
forward . {{ forwardTarget }} {
|
|
force_tcp
|
|
}
|
|
prometheus :9253
|
|
}
|
|
ip6.arpa:53 {
|
|
errors
|
|
cache 30
|
|
reload
|
|
loop
|
|
bind {{ nodelocaldns_ip }}
|
|
forward . {{ forwardTarget }} {
|
|
force_tcp
|
|
}
|
|
prometheus :9253
|
|
}
|
|
.:53 {
|
|
errors
|
|
cache 30
|
|
reload
|
|
loop
|
|
bind {{ nodelocaldns_ip }}
|
|
forward . {{ upstreamForwardTarget }} {
|
|
force_tcp
|
|
}
|
|
prometheus :9253
|
|
}
|