惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The Hacker News
The Hacker News
WordPress大学
WordPress大学
aimingoo的专栏
aimingoo的专栏
The Last Watchdog
The Last Watchdog
小众软件
小众软件
S
Security @ Cisco Blogs
S
Schneier on Security
Forbes - Security
Forbes - Security
S
Secure Thoughts
W
WeLiveSecurity
Latest news
Latest news
博客园 - Franky
Last Week in AI
Last Week in AI
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
美团技术团队
Schneier on Security
Schneier on Security
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
B
Blog
GbyAI
GbyAI
A
About on SuperTechFans
爱范儿
爱范儿
博客园 - 叶小钗
T
Tor Project blog
SecWiki News
SecWiki News
Blog — PlanetScale
Blog — PlanetScale
A
Arctic Wolf
博客园 - 聂微东
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
Application and Cybersecurity Blog
Application and Cybersecurity Blog
G
GRAHAM CLULEY
Webroot Blog
Webroot Blog
Google Online Security Blog
Google Online Security Blog
博客园 - 三生石上(FineUI控件)
Hacker News: Ask HN
Hacker News: Ask HN
Hacker News - Newest:
Hacker News - Newest: "LLM"
The Register - Security
The Register - Security
C
CERT Recently Published Vulnerability Notes
K
Kaspersky official blog
U
Unit 42
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
Security Affairs
V2EX - 技术
V2EX - 技术
Help Net Security
Help Net Security
阮一峰的网络日志
阮一峰的网络日志
Recent Announcements
Recent Announcements
J
Java Code Geeks

Notes on CoreDNS: DNS and Service Discovery

CoreDNS-1.14.2 Release CoreDNS-1.14.1 Release CoreDNS-1.14.0 Release CoreDNS-1.13.2 Release CoreDNS-1.13.1 Release CoreDNS-1.13.0 Release CoreDNS-1.12.4 Release CoreDNS-1.12.3 Release CoreDNS-1.12.2 Release CoreDNS-1.12.1 Release CoreDNS-1.12.0 Release CoreDNS-1.11.4 Release CoreDNS-1.11.3 Release CoreDNS-1.11.2 Release CoreDNS-1.11.1 Release CoreDNS-1.11.0 Release CoreDNS-1.10.1 Release CoreDNS-1.10.0 Release CoreDNS-1.9.4 Release CoreDNS-1.9.3 Release CoreDNS-1.9.2 Release CoreDNS-1.9.1 Release CoreDNS-1.9.0 Release CoreDNS-1.8.7 Release CoreDNS-1.8.6 Release CoreDNS-1.8.5 Release CoreDNS-1.8.4 Release CoreDNS-1.8.3 Release CoreDNS-1.8.2 Release CoreDNS-1.8.1 Release CoreDNS-1.8.0 Release CoreDNS-1.7.1 Release CoreDNS-1.7.0 Release CoreDNS-1.6.8 Release CoreDNS-1.6.9 Release CoreDNS-1.6.7 Release CoreDNS-1.6.6 Release CoreDNS-1.6.5 Release CoreDNS-1.6.4 Release CoreDNS-1.6.3 Release CoreDNS-1.6.2 Release CoreDNS-1.6.1 Release CoreDNS-1.6.0 Release CoreDNS-1.5.2 Release CoreDNS-1.5.1 Release CoreDNS-1.5.0 Release CoreDNS-1.4.0 Release CoreDNS-1.3.1 Release CoreDNS-1.3.0 Release CoreDNS-1.2.6 Release CoreDNS-1.2.5 Release CoreDNS-1.2.4 Release CoreDNS-1.2.3 Release CoreDNS-1.2.2 Release CoreDNS-1.2.1 Release CoreDNS-1.2.0 Release CoreDNS-1.1.4 Release CoreDNS-1.1.3 Release CoreDNS-1.1.2 Release CoreDNS-1.1.1 Release CoreDNS-1.1.0 Release CoreDNS-1.0.6 Release CoreDNS-1.0.5 Release CoreDNS-1.0.4 Release CoreDNS-1.0.3 Release CoreDNS-1.0.2 Release CoreDNS-1.0.1 Release CoreDNS-1.0.0 Release CoreDNS-0.9.10 Release CoreDNS-0.9.9 Release CoreDNS-011 Release CoreDNS-010 Release CoreDNS-009 Release CoreDNS-007 Release CoreDNS-006 Release CoreDNS-005 Release CoreDNS-004 Release CoreDNS-003 Release CoreDNS-002 Release CoreDNS-001 Release
CoreDNS-008 Release
coredns · 2017-06-15 · via Notes on CoreDNS: DNS and Service Discovery

CoreDNS-008 has been released!

CoreDNS is a DNS server that chains plugins, where each plugin implements a DNS feature.

Release v008 has a lot of content, with new plugin and major features added to existing plugin.

Please note there is an incompatible change to the log directive - it now only logs to stdout and so only allows stdout as the file name (which of course may be omitted).

Core

  • -log flag was changed into a boolean as all logging will be written to standard output.

Plugins

New

  • hosts allows CoreDNS to read a /etc/hosts styled file and generate responses from that.
  • debug can disable the panic/recover that is enabled by default. Mostly useful for testing/non-prod use cases to generate stack traces.

Updates

  • chaos now returns the correct version.bind TXT record.
  • kubernetes
    • Now returns a proper NS record for the cluster domain
    • Supports ExternalName services, which was an oversight in the 1.0.0 version of the Kubernetes dns spec
    • Now supports federation records
    • Has had some other bug fixes.
  • file
    • Now supports DNAME RFC 6672
    • Refuse to load a zone without a SOA record.
  • file, auto don’t reload a zone when the SOA’s serial hasn’t changed.
  • secondary now behaves properly if queried before the zone has been transferred
  • log, errors output everything to stdout and let journald or docker (or whatever) that care of further handling. This is backwards incompatible change wrt to the Corefile: log query.log will return an error.
  • cache got a new cache implementation to be more scalable and a new prefetch option for fetching records before the TTL expires.
  • proxy does not use singleinflight anymore, removing a potential bottleneck on the single mutex in that implementation; it now forwards all queries it get to the upstream nameserver.

Contributors

The following people helped with getting this release done:

Chris Aniszczyk, Chris O’Haver, cricketliu, Eric Yan, John Belamaric, Jonas Östanbäck, Manuel Alejandro de Brito Fontes, Miek Gieben, Pat Moroney, Yong Tang

If you want to help, please check out one of the issues and start coding!

For documentation and help, see our community page.