- Home
- All questions
- Question 788
CKA study material · question 788 of 1000
A cluster deploys NodeLocal DNSCache. Which two effects does it have on a Pod's DNS queries? Choose two.
Show the answer
Answer: A. They no longer require DNAT to a CoreDNS cluster IP
C. Cluster names are answered locally on a cache hit
The local agent answers from cache and only asks CoreDNS on a miss, and because the query goes to a node-local address it avoids the DNAT and connection tracking of a Service IP.
Source: Using NodeLocal DNSCache in Kubernetes Clusters (Kubernetes) — Introduction