mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 11:50:44 +00:00
Merge pull request #60935 from shyamjvs/increase-volume-binder-log-verbosity
Automatic merge from submit-queue (batch tested with PRs 60891, 60935). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Increase verbosity of frequently printed logline in scheduler_binder Fix https://github.com/kubernetes/kubernetes/issues/60933 /cc @wojtek-t @msau42 ```release-note NONE ``` /milestone 1.10 /sig storage
This commit is contained in:
commit
9501c525a6
@ -130,7 +130,8 @@ func (b *volumeBinder) GetBindingsCache() PodBindingCache {
|
||||
func (b *volumeBinder) FindPodVolumes(pod *v1.Pod, nodeName string) (unboundVolumesSatisfied, boundVolumesSatisfied bool, err error) {
|
||||
podName := getPodName(pod)
|
||||
|
||||
glog.V(4).Infof("FindPodVolumes for pod %q, node %q", podName, nodeName)
|
||||
// Warning: Below log needs high verbosity as it can be printed several times (#60933).
|
||||
glog.V(5).Infof("FindPodVolumes for pod %q, node %q", podName, nodeName)
|
||||
|
||||
// Initialize to true for pods that don't have volumes
|
||||
unboundVolumesSatisfied = true
|
||||
|
Loading…
Reference in New Issue
Block a user