We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55059ff commit 7cf8253Copy full SHA for 7cf8253
pkg/validator/checks/conformance/helpers.go
@@ -228,6 +228,7 @@ func podStuckReason(pod *corev1.Pod) string {
228
for _, cond := range pod.Status.Conditions {
229
if cond.Type == corev1.PodScheduled && cond.Status == corev1.ConditionFalse &&
230
cond.Reason == string(corev1.PodReasonUnschedulable) {
231
+
232
return fmt.Sprintf("Unschedulable: %s", cond.Message)
233
}
234
0 commit comments