Merge pull request #71929 from tanshanshan/schedulerlittle10

add description about namespace for  pod in log
pull/564/head
Kubernetes Prow Robot 2018-12-28 10:52:12 -08:00 committed by GitHub
commit d6e0d5a9e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1031,7 +1031,7 @@ func selectVictimsOnNode(
if !fits {
removePod(p)
victims = append(victims, p)
klog.V(5).Infof("Pod %v is a potential preemption victim on node %v.", p.Name, nodeInfo.Node().Name)
klog.V(5).Infof("Pod %v/%v is a potential preemption victim on node %v.", p.Namespace, p.Name, nodeInfo.Node().Name)
}
return fits
}