mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 19:56:01 +00:00
Turn down hootloop logs in priorities. Hit once cluster is near capacity
This commit is contained in:
parent
9aac6cfdb6
commit
f2b8b08651
@ -48,7 +48,7 @@ func calculateUnusedScore(requested int64, capacity int64, node string) int64 {
|
||||
return 0
|
||||
}
|
||||
if requested > capacity {
|
||||
glog.V(2).Infof("Combined requested resources %d from existing pods exceeds capacity %d on node %s",
|
||||
glog.V(4).Infof("Combined requested resources %d from existing pods exceeds capacity %d on node %s",
|
||||
requested, capacity, node)
|
||||
return 0
|
||||
}
|
||||
@ -67,7 +67,7 @@ func calculateUsedScore(requested int64, capacity int64, node string) int64 {
|
||||
return 0
|
||||
}
|
||||
if requested > capacity {
|
||||
glog.V(2).Infof("Combined requested resources %d from existing pods exceeds capacity %d on node %s",
|
||||
glog.V(4).Infof("Combined requested resources %d from existing pods exceeds capacity %d on node %s",
|
||||
requested, capacity, node)
|
||||
return 0
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user