diff --git a/plugin/pkg/scheduler/algorithm/predicates/metadata.go b/plugin/pkg/scheduler/algorithm/predicates/metadata.go index e407ac98af0..9e22ddba971 100644 --- a/plugin/pkg/scheduler/algorithm/predicates/metadata.go +++ b/plugin/pkg/scheduler/algorithm/predicates/metadata.go @@ -52,7 +52,7 @@ func (pfactory *PredicateMetadataFactory) GetMetadata(pod *v1.Pod, nodeNameToInf matchingAntiAffinityTerms: matchingTerms, } for predicateName, precomputeFunc := range predicatePrecomputations { - glog.V(4).Info("Precompute: %v", predicateName) + glog.V(10).Info("Precompute: %v", predicateName) precomputeFunc(predicateMetadata) } return predicateMetadata diff --git a/plugin/pkg/scheduler/algorithm/predicates/predicates.go b/plugin/pkg/scheduler/algorithm/predicates/predicates.go index f87bc0c893d..231960d1539 100644 --- a/plugin/pkg/scheduler/algorithm/predicates/predicates.go +++ b/plugin/pkg/scheduler/algorithm/predicates/predicates.go @@ -417,7 +417,7 @@ func (c *VolumeZoneChecker) predicate(pod *v1.Pod, meta interface{}, nodeInfo *s } nodeV, _ := nodeConstraints[k] if v != nodeV { - glog.V(2).Infof("Won't schedule pod %q onto node %q due to volume %q (mismatch on %q)", pod.Name, node.Name, pvName, k) + glog.V(10).Infof("Won't schedule pod %q onto node %q due to volume %q (mismatch on %q)", pod.Name, node.Name, pvName, k) return false, []algorithm.PredicateFailureReason{ErrVolumeZoneConflict}, nil } } diff --git a/plugin/pkg/scheduler/algorithm/priorities/least_requested.go b/plugin/pkg/scheduler/algorithm/priorities/least_requested.go index 5e0f7bcaed1..29b5aec2bd5 100644 --- a/plugin/pkg/scheduler/algorithm/priorities/least_requested.go +++ b/plugin/pkg/scheduler/algorithm/priorities/least_requested.go @@ -49,7 +49,7 @@ func calculateUnusedScore(requested int64, capacity int64, node string) int64 { return 0 } if requested > capacity { - glog.V(4).Infof("Combined requested resources %d from existing pods exceeds capacity %d on node %s", + glog.V(10).Infof("Combined requested resources %d from existing pods exceeds capacity %d on node %s", requested, capacity, node) return 0 } diff --git a/plugin/pkg/scheduler/algorithm/priorities/most_requested.go b/plugin/pkg/scheduler/algorithm/priorities/most_requested.go index 1492dc57f8a..f2b9b9e099d 100644 --- a/plugin/pkg/scheduler/algorithm/priorities/most_requested.go +++ b/plugin/pkg/scheduler/algorithm/priorities/most_requested.go @@ -53,7 +53,7 @@ func calculateUsedScore(requested int64, capacity int64, node string) int64 { return 0 } if requested > capacity { - glog.V(4).Infof("Combined requested resources %d from existing pods exceeds capacity %d on node %s", + glog.V(10).Infof("Combined requested resources %d from existing pods exceeds capacity %d on node %s", requested, capacity, node) return 0 }