From 38e409b4b656c39d2fa976eb5398a3ad0ea42c6e Mon Sep 17 00:00:00 2001 From: mfleader <65633602+mfleader@users.noreply.github.com> Date: Thu, 24 Jun 2021 15:18:08 -0400 Subject: [PATCH] Correct newdnsController's documented function signature (#4717) Signed-off-by: mleader --- plugin/kubernetes/controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/kubernetes/controller.go b/plugin/kubernetes/controller.go index f17576eb4..9bef91342 100644 --- a/plugin/kubernetes/controller.go +++ b/plugin/kubernetes/controller.go @@ -100,7 +100,7 @@ type dnsControlOpts struct { endpointNameMode bool } -// newDNSController creates a controller for CoreDNS. +// newdnsController creates a controller for CoreDNS. func newdnsController(ctx context.Context, kubeClient kubernetes.Interface, opts dnsControlOpts) *dnsControl { dns := dnsControl{ client: kubeClient,