Remove 'minion' from the code in two places in favor of 'node'

This commit is contained in:
Brendan Burns
2016-11-21 22:48:06 -08:00
parent 0042ce5684
commit e68fe4d62e
2 changed files with 2 additions and 2 deletions

View File

@@ -179,7 +179,7 @@ func (nc *NodeController) maybeDeleteTerminatingPod(obj interface{}) {
node := nodeObj.(*api.Node)
v, err := version.Parse(node.Status.NodeInfo.KubeletVersion)
if err != nil {
glog.V(0).Infof("couldn't parse verions %q of minion: %v", node.Status.NodeInfo.KubeletVersion, err)
glog.V(0).Infof("couldn't parse verions %q of node: %v", node.Status.NodeInfo.KubeletVersion, err)
utilruntime.HandleError(nc.forcefullyDeletePod(pod))
return
}