From 439ab5a4871325aa438cf2b5e3e0cb87ad75041e Mon Sep 17 00:00:00 2001 From: andrewsykim Date: Thu, 24 Nov 2016 01:35:45 -0500 Subject: [PATCH] fix mixleading warning message regarding kube-proxy nodeIP initialization --- pkg/proxy/iptables/proxier.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/proxy/iptables/proxier.go b/pkg/proxy/iptables/proxier.go index a64659904c7..3350680f44a 100644 --- a/pkg/proxy/iptables/proxier.go +++ b/pkg/proxy/iptables/proxier.go @@ -246,7 +246,7 @@ func NewProxier(ipt utiliptables.Interface, sysctl utilsysctl.Interface, exec ut masqueradeMark := fmt.Sprintf("%#08x/%#08x", masqueradeValue, masqueradeValue) if nodeIP == nil { - glog.Warningf("invalid nodeIP, initialize kube-proxy with 127.0.0.1 as nodeIP") + glog.Warningf("invalid nodeIP, initializing kube-proxy with 127.0.0.1 as nodeIP") nodeIP = net.ParseIP("127.0.0.1") }