aboutsummaryrefslogtreecommitdiff
path: root/core/coredns.go
diff options
context:
space:
mode:
authorGravatar Miek Gieben <miek@miek.nl> 2016-08-20 23:03:36 +0100
committerGravatar GitHub <noreply@github.com> 2016-08-20 23:03:36 +0100
commit416603383dfe0f57ef480e4bf480bbab1bf780a9 (patch)
treec03871ed17a439df91d32b1cdc999fed0a15f434 /core/coredns.go
parent9ac3cab1b7b1b1e78f86ce3c6a80fbee312162e6 (diff)
downloadcoredns-416603383dfe0f57ef480e4bf480bbab1bf780a9.tar.gz
coredns-416603383dfe0f57ef480e4bf480bbab1bf780a9.tar.zst
coredns-416603383dfe0f57ef480e4bf480bbab1bf780a9.zip
Cleanup and fixes (#223)
* Set version to 001 * Remove k8stest, test fails is k8s is not there: touch luck * Remove server directory: not used anymore * Disable k8s test (for now) * gometalinter changes
Diffstat (limited to 'core/coredns.go')
-rw-r--r--core/coredns.go16
1 files changed, 7 insertions, 9 deletions
diff --git a/core/coredns.go b/core/coredns.go
index e770a1a30..0ceb5d064 100644
--- a/core/coredns.go
+++ b/core/coredns.go
@@ -6,21 +6,19 @@ import (
// plug in the standard directives
_ "github.com/miekg/coredns/middleware/bind"
- _ "github.com/miekg/coredns/middleware/health"
- _ "github.com/miekg/coredns/middleware/pprof"
-
- _ "github.com/miekg/coredns/middleware/errors"
- _ "github.com/miekg/coredns/middleware/loadbalance"
- _ "github.com/miekg/coredns/middleware/log"
- _ "github.com/miekg/coredns/middleware/metrics"
- _ "github.com/miekg/coredns/middleware/rewrite"
-
_ "github.com/miekg/coredns/middleware/cache"
_ "github.com/miekg/coredns/middleware/chaos"
_ "github.com/miekg/coredns/middleware/dnssec"
+ _ "github.com/miekg/coredns/middleware/errors"
_ "github.com/miekg/coredns/middleware/etcd"
_ "github.com/miekg/coredns/middleware/file"
+ _ "github.com/miekg/coredns/middleware/health"
_ "github.com/miekg/coredns/middleware/kubernetes"
+ _ "github.com/miekg/coredns/middleware/loadbalance"
+ _ "github.com/miekg/coredns/middleware/log"
+ _ "github.com/miekg/coredns/middleware/metrics"
+ _ "github.com/miekg/coredns/middleware/pprof"
_ "github.com/miekg/coredns/middleware/proxy"
+ _ "github.com/miekg/coredns/middleware/rewrite"
_ "github.com/miekg/coredns/middleware/secondary"
)