Startup notification (#250)
Stop the caddy message and start our own init notifications. Log the version of CoreDNS when starting up. Fix all middleware's setup functions so that return the error prefixed with *which* middleware was failing; leads to better debuggable errors when starting up.
This commit is contained in:
parent
5216ab6b58
commit
2dd8a687b3
19 changed files with 82 additions and 34 deletions
|
@ -24,12 +24,12 @@ func init() {
|
|||
func setup(c *caddy.Controller) error {
|
||||
kubernetes, err := kubernetesParse(c)
|
||||
if err != nil {
|
||||
return err
|
||||
return middleware.Error("kubernetes", err)
|
||||
}
|
||||
|
||||
err = kubernetes.InitKubeCache()
|
||||
if err != nil {
|
||||
return err
|
||||
return middleware.Error("kubernetes", err)
|
||||
}
|
||||
|
||||
// Register KubeCache start and stop functions with Caddy
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue