Fix typo in kube-proxy server.go

This commit is contained in:
Paul Morie 2015-09-08 14:03:45 -04:00
parent 2f93978df8
commit 7f5e70022b

View File

@ -200,7 +200,7 @@ func (s *ProxyServer) Run(_ []string) error {
ipt := utiliptables.New(execer, protocol)
proxierUserspace, err := userspace.NewProxier(loadBalancer, s.BindAddress, ipt, s.PortRange, s.SyncPeriod)
if err != nil {
glog.Fatalf("Unable to create proxer: %v", err)
glog.Fatalf("Unable to create proxier: %v", err)
}
proxier = proxierUserspace
// Remove artifacts from the pure-iptables Proxier.