-
Notifications
You must be signed in to change notification settings - Fork 299
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Node local DNS cache not working with bind IP true #670
Comments
│ [INFO] 169.254.20.25:59384 - 35974 "HINFO IN 6748091981269100221.5931735662964552412. udp 57 false 512" NXDOMAIN qr,rd,ra 132 0.004483071s │ there is not traffic coming into the node local dns cache after this |
Hey, I faced the same issue in AWS EKS with CoreDNS addon. Do check whether your |
This issue is stale because it has been open 14 days with no activity. Remove stale label or comment or this will be closed in 5 days. |
This issue is stale because it has been open 14 days with no activity. Remove stale label or comment or this will be closed in 5 days. |
I enabled the bind IP true while deploying this chart.
This the corefile used for node local dns cache,
Corefile: |
cluster.local:53 {
log
errors
cache {
success 9984 30
denial 9984 5
prefetch 3 60s 20%
}
reload
loop
bind 169.254.20.25 172.20.0.10
forward . PILLAR__CLUSTER__DNS {
force_tcp
}
prometheus :9253
health :62434
}
in-addr.arpa:53 {
errors
cache {
prefetch 3 60s 20%
}
reload
loop
bind 169.254.20.25 172.20.0.10
forward . PILLAR__CLUSTER__DNS {
force_tcp
}
prometheus :9253
}
ip6.arpa:53 {
errors
cache {
prefetch 3 60s 20%
}
reload
loop
bind 169.254.20.25 172.20.0.10
forward . PILLAR__CLUSTER__DNS {
force_tcp
}
prometheus :9253
}
.:53 {
log
errors
cache {
prefetch 3 60s 20%
}
reload
loop
bind 169.254.20.25 172.20.0.10
forward . PILLAR__UPSTREAM__SERVERS
prometheus :9253
}
kube-system kube-dns ClusterIP 172.20.0.10 dns:53►0╱UDP dns-tcp:53►0 metrics:9153►0
I dont see the node local dns cache getting bind to the requests coming towards coredns
The text was updated successfully, but these errors were encountered: