Back to blog
Product

Automatically Resolve Kubernetes DNS Issues with the CoreDNS Op Pack

Learn how to resolve Kubernetes DNS issues with Shoreline's CoreDNS Op Pack.
Joe Kuo

Introduction

CoreDNS has been packaged with Kubernetes since v1.0.1 and has replaced both SkyDNS and KubeDNS as the default DNS server for Kubernetes. As a result, CoreDNS is at the core of Kubernetes service discovery. Without CoreDNS, pods cannot find one another, and communication between them breaks down -- if CoreDNS goes down, your entire cluster goes down with it.

Experienced operators running Kubernetes at scale will acknowledge that networking is complex with K8s, and often the most common problems and outages in a Kubernetes cluster come from DNS issues.  Below are just a few of the many potential DNS problems within Kubernetes.

  • In some scenarios, <code-block>systemd-resolved<code-block> adds a loopback local IP to <code-block>resolv.conf<code-block>, which can cause CoreDNS to forward requests to itself rather than upstream.
  • Iterating up to five search domains with the <code-block>ndots: 5<code-block> option dramatically increases the number of DNS lookups.
  • Using <code-block>autopath<code-block> to reduce DNS lookups also prevents caching, so upstream failures may quickly spiral out of control.
  • Under high load, some requests (especially TCP) are blackholed, even graceful termination setting the <code-block>weight: 0<code-block> option.

Given that CoreDNS is prone to issues, it is crucial that we carefully monitor the DNS before outages occur. Imagine a scenario where your frontend application goes down, and after investigation, you find that it is not resolving the backend endpoint because DNS keeps returning the dreaded 500 error.

Luckily CoreDNS exposes a rich set of metrics available to Prometheus. Retrieve metrics by accessing the endpoint with the following command: <code-block>curl localhost:9153/metrics<code-block>

Many of these metrics monitor CoreDNS for latency. Unfortunately, too many calls to the DNS service may cause massive latency. Once latency between the pod and CoreDNS reaches one second or more, it impacts both the customer and ultimately their SLA. However, most organizations merely monitor CoreDNS and continue to manually address the issue, causing unacceptable delays and potentially system outages.

Shoreline CoreDNS Op Pack

Shoreline Op Packs consist of a pre-packaged set of Alarms, Actions, and Bots delivered as Terraform modules, which are easy to configure and fast to deploy.

The Shoreline CoreDNS Op Pack monitors metrics and automatically triggers an Action that restarts the CoreDNS pod once latency exceeds a configurable threshold. In addition, the Op Pack includes a configuration map for ingesting metrics from the CoreDNS Prometheus exporter so you can immediately leverage them. For details on modifying the configuration map, check out the Metric Scraper: resource_mapping_config documentation.

Below are some of the key features and benefits of the CoreDNS Op Pack:

  • Shoreline gathers CoreDNS metrics as frequently as once per second, so we can use multiple data points and different percentiles when deciding if CoreDNS resolves slowly or not.
  • Shoreline focuses on DNS latency rather than overall measured latency because it helps disambiguate latency from the network versus latency from DNS resolution. This practice prevents false positives when the clusters experience high network latency. The Alarm threshold is configured in milliseconds so that you can tightly control the latency tolerance.
  • Shoreline uses rolling restarts of the CoreDNS pods to prevent service outages. Kubernetes version 1.15 and above supports rolling restarts:

<code-block>kubectl rollout restart -n kube-system deployment/coredns<code-block>

  • Optionally the CoreDNS Op Pack can automatically create a PagerDuty incident or Slack message when an Alarm or Action is triggered. The notification includes the affected Resource, latency measurement, and any executed Action (e.g., restarting the CoreDNS pod). This capability eliminates another manual step by automating the notification process for further root cause analysis.

Conclusion

Please click here for a demo of Shoreline’s CoreDNS Op Pack or incident automation in general. We would love to schedule a demo session and discuss how Shoreline can help your organization reduce operator toil.

Ready to give Shoreline a try?

Join a growing community of companies making on-call better
Request demo

Find more Shoreline resources

Looking for more information? Visit our other resource sections