themes/coredns/layouts/index.html
{{ define "title"}} {{ .Site.Title}} {{end}} {{ define "header"}} {{ partial "header" .}} {{end}} {{ define "main"}}
{{.Description | markdownify }}
DownloadView on GitHubManual
{{ range where .Site.Pages "Params.release" "eq" .Site.Data.coredns.release.version }}
Version {{ .Params.release }}. Released {{ dateFormat "2006-01-02" .Date }}. Release notes.
{{ end }}
{{ partial "popup.html" . }}
CoreDNS is a DNS server. It is written in Go. It can be used in a multitude of environments because of its flexibility. CoreDNS is licensed under the Apache License Version 2, and completely open source.
Development takes place on GitHub. Some devs hang out on Slack on the #coredns channel.
CoreDNS chains plugins. Each plugin performs a DNS function, such as Kubernetes service discovery, prometheus metrics, rewriting queries, or just serving from zone files. And manymore.
We are a Cloud Native Computing Foundation graduated project.
CoreDNS integrates with Kubernetes via the Kubernetes plugin, or with etcd with the etcd plugin. All major cloud providers have plugins too: Microsoft Azure DNS, GCP Cloud DNS and AWS Route53.
We aim to make CoreDNS fast and efficient. It is also flexible thanks to its plugins. You can compile CoreDNS with only the plugins you need.
We strive to keep things as simple as possible and have sane defaults. Here is the Corefile for coredns.io:
coredns.io {
file db.coredns.io.signed
transfer {
to * 185.49.140.62
}
sign zones/coredns.io {
key file Kcoredns.io.+013+16376
}
}
{{partial "logo" (dict "context" . "url" "k8s.io" "logo" "k8s.png" "alt" "kubernetes home") }} {{partial "logo" (dict "context" . "url" "www.mit.edu" "logo" "mit.png" "alt" "mit home") }} {{partial "logo" (dict "context" . "url" "infoblox.com" "logo" "infoblox.png" "alt" "infoblox home") }} {{partial "logo" (dict "context" . "url" "engineering.skybettingandgaming.com" "logo" "sky.png" "alt" "sbg home") }} {{partial "logo" (dict "context" . "url" "getadmiral.com" "logo" "admiral.png" "alt" "admiral home") }}
{{partial "logo" (dict "context" . "url" "kismia.com" "logo" "kismia.png" "alt" "kismia home") }} {{partial "logo" (dict "context" . "url" "www.soundcloud.com" "logo" "soundcloud.png" "alt" "soundcloud home") }} {{partial "logo" (dict "context" . "url" "qunar.com" "logo" "qunar.png" "alt" "qunar home") }} {{partial "logo" (dict "context" . "url" "tradeshift.com" "logo" "tradeshift.png" "alt" "tradeshift home") }}
{{ end }} {{ define "footer"}} {{ partial "footer" .}} {{end}}