We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 672aa55 commit d80981bCopy full SHA for d80981b
test/e2e/node/pods.go
@@ -350,7 +350,7 @@ var _ = SIGDescribe("Pods Extended", func() {
350
switch {
351
case t.ExitCode == 1:
352
// expected
353
- case t.ExitCode == 128 && t.Reason == "ContainerCannotRun" && reBug88766.MatchString(t.Message):
+ case t.ExitCode == 128 && (t.Reason == "StartError" || t.Reason == "ContainerCannotRun") && reBug88766.MatchString(t.Message):
354
// pod volume teardown races with container start in CRI, which reports a failure
355
framework.Logf("pod %s on node %s failed with the symptoms of https://github.com/kubernetes/kubernetes/issues/88766")
356
default:
0 commit comments