aboutsummaryrefslogtreecommitdiff
path: root/plugin/kubernetes/external.go
diff options
context:
space:
mode:
authorGravatar Chris O'Haver <cohaver@infoblox.com> 2019-08-21 16:08:55 -0400
committerGravatar GitHub <noreply@github.com> 2019-08-21 16:08:55 -0400
commit3f47fc8ba4f43a074c078c71fccb8a0463d31672 (patch)
treeaca616b315d0114a4351c4bdda2bdcf05a638b06 /plugin/kubernetes/external.go
parent6881d6d5854a718cd5c754f496a53f9931d6e34e (diff)
downloadcoredns-3f47fc8ba4f43a074c078c71fccb8a0463d31672.tar.gz
coredns-3f47fc8ba4f43a074c078c71fccb8a0463d31672.tar.zst
coredns-3f47fc8ba4f43a074c078c71fccb8a0463d31672.zip
typo fixes (#3169)
* spelling fixes * its/it's
Diffstat (limited to 'plugin/kubernetes/external.go')
-rw-r--r--plugin/kubernetes/external.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/kubernetes/external.go b/plugin/kubernetes/external.go
index 91a8a2ed1..4b1104460 100644
--- a/plugin/kubernetes/external.go
+++ b/plugin/kubernetes/external.go
@@ -21,7 +21,7 @@ func (k *Kubernetes) External(state request.Request) ([]msg.Service, int) {
if last < 0 {
return nil, dns.RcodeServerFailure
}
- // We dealing with a fairly normal domain name here, but; we still need to have the service
+ // We are dealing with a fairly normal domain name here, but we still need to have the service
// and the namespace:
// service.namespace.<base>
//
@@ -86,7 +86,7 @@ func (k *Kubernetes) External(state request.Request) ([]msg.Service, int) {
// ExternalAddress returns the external service address(es) for the CoreDNS service.
func (k *Kubernetes) ExternalAddress(state request.Request) []dns.RR {
// This is probably wrong, because of all the fallback behavior of k.nsAddr, i.e. can get
- // an address that isn't reacheable from outside the cluster.
+ // an address that isn't reachable from outside the cluster.
rrs := []dns.RR{k.nsAddr()}
return rrs
}