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
// This update makes the pod tolerate the unschedulable taint.
92
+
logger.V(5).Info("a new toleration is added for the unschedulable Pod, and it may make it schedulable", "pod", klog.KObj(modifiedPod))
93
+
returnframework.Queue, nil
94
+
}
95
+
logger.V(5).Info("a new toleration is added for the unschedulable Pod, but it's an unrelated toleration", "pod", klog.KObj(modifiedPod))
96
+
returnframework.QueueSkip, nil
97
+
}
98
+
99
+
logger.V(5).Info("a new toleration is added for a Pod, but it's an unrelated Pod and wouldn't change the TaintToleration plugin's decision", "pod", klog.KObj(modifiedPod))
100
+
101
+
returnframework.QueueSkip, nil
102
+
}
103
+
60
104
// isSchedulableAfterNodeChange is invoked for all node events reported by
61
105
// an informer. It checks whether that change made a previously unschedulable
0 commit comments