You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// updated PVC is not schedulable because PVC doesn't match the pod's PVC
330
330
if!isMatched {
331
-
logger.V(5).Info("PVC was created or updated but it doesn't make this pod schedulable.", "pod", klog.KObj(pod), "PVC", klog.KObj(modifiedPVC))
331
+
logger.V(5).Info("PVC was created or updated but it doesn't make this pod schedulable. PVC is not binding to the pod.", "pod", klog.KObj(pod), "PVC", klog.KObj(modifiedPVC))
// the PVC that didn't match the pod now matches the pod
336
-
ifisMatched&&!wasMatched {
337
-
logger.V(5).Info("PVC was created or updated, which might make the pod schedulable. The given PVC matches the pod's PVC", "pod", klog.KObj(pod), "PVC", klog.KObj(modifiedPVC))
338
-
returnframework.Queue, nil
339
-
}
340
-
logger.V(5).Info("PVC was created or updated but it doesn't make this pod schedulable. Nothing has changed about PV bound to PVC.", "pod", klog.KObj(pod), "PVC", klog.KObj(modifiedPVC))
341
-
returnframework.QueueSkip, nil
334
+
logger.V(5).Info("PVC was created or updated and it might make this pod schedulable. PVC is binding to the pod.", "pod", klog.KObj(pod), "PVC", klog.KObj(modifiedPVC))
335
+
returnframework.Queue, nil
342
336
}
343
337
344
338
// checkPVCBindingToPodPV verifies if the PVC is bound to PV of a given Pod.
0 commit comments