Skip to content

Commit 930b3a4

Browse files
authored
Merge pull request kubernetes#92051 from rphillips/fixes/pod_log_line
e2e pods: add missing pod and node name in the formatted log line
2 parents 4ea576e + d9d1fc6 commit 930b3a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/e2e/node/pods.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ var _ = SIGDescribe("Pods Extended", func() {
372372
// expected
373373
case t.ExitCode == 128 && (t.Reason == "StartError" || t.Reason == "ContainerCannotRun") && reBug88766.MatchString(t.Message):
374374
// pod volume teardown races with container start in CRI, which reports a failure
375-
framework.Logf("pod %s on node %s failed with the symptoms of https://github.com/kubernetes/kubernetes/issues/88766")
375+
framework.Logf("pod %s on node %s failed with the symptoms of https://github.com/kubernetes/kubernetes/issues/88766", pod.Name, pod.Spec.NodeName)
376376
default:
377377
return fmt.Errorf("pod %s on node %s container unexpected exit code %d: start=%s end=%s reason=%s message=%s", pod.Name, pod.Spec.NodeName, t.ExitCode, t.StartedAt, t.FinishedAt, t.Reason, t.Message)
378378
}

0 commit comments

Comments
 (0)