Merge pull request #550 from mcshooter/addContainerDProblemsToDetect

Detect when container process fails to start
This commit is contained in:
Kubernetes Prow Robot
2021-05-03 15:06:08 -07:00
committed by GitHub
@@ -13,13 +13,13 @@
"rules": [ "rules": [
{ {
"type": "temporary", "type": "temporary",
"reason": "MissingPigz", "reason": "ContainerCreationFailed",
"pattern": "unpigz not found.*" "pattern": ".*failed to create containerd container.*error unpacking image.*wrong diff id calculated on extraction.*"
}, },
{ {
"type": "temporary", "type": "temporary",
"reason": "IncompatibleContainer", "reason": "CorruptContainerImageLayer",
"pattern": ".*CreateComputeSystem.*" "pattern": ".*failed to pull and unpack image.*failed to extract layer.*archive/tar: invalid tar header.*"
} }
] ]
} }