diff options
author | 2019-03-20 13:32:23 +0000 | |
---|---|---|
committer | 2019-03-20 09:32:23 -0400 | |
commit | 43c3e0ab68fc103967bfb9bec0363d42a5964dac (patch) | |
tree | 9896e9e070a571026f3849bdb700b2251829af75 /plugin/kubernetes/ready.go | |
parent | aa9c7a2e61ce2d06accf5731109e120004cb698b (diff) | |
download | coredns-43c3e0ab68fc103967bfb9bec0363d42a5964dac.tar.gz coredns-43c3e0ab68fc103967bfb9bec0363d42a5964dac.tar.zst coredns-43c3e0ab68fc103967bfb9bec0363d42a5964dac.zip |
plugin/kubernetes: add ready function (#2709)
* plugin/kubernetes: add ready function
Add ready function as the health function is now gone.
Signed-off-by: Miek Gieben <miek@miek.nl>
* Fix readme
Signed-off-by: Miek Gieben <miek@miek.nl>
Diffstat (limited to 'plugin/kubernetes/ready.go')
-rw-r--r-- | plugin/kubernetes/ready.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugin/kubernetes/ready.go b/plugin/kubernetes/ready.go new file mode 100644 index 000000000..2625f3b5a --- /dev/null +++ b/plugin/kubernetes/ready.go @@ -0,0 +1,4 @@ +package kubernetes + +// Ready implements the ready.Readiness interface. +func (k *Kubernetes) Ready() bool { return k.APIConn.HasSynced() } |