Merge pull request #120059 from tzneal/mark-oomkiller-test-as-serial

mark the OOM killer as serial to reduce flakes
This commit is contained in:
Kubernetes Prow Robot 2023-08-18 18:19:31 -07:00 committed by GitHub
commit 8a8d63a732
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,10 @@ type testCase struct {
oomTargetContainerName string
}
var _ = SIGDescribe("OOMKiller [LinuxOnly] [NodeConformance]", func() {
// Marked as [Serial] since currently the runtime can miss the OOM event if the pod is killed too quickly. This seems
// to occur more often when the node is highly loaded.
var _ = SIGDescribe("OOMKiller [LinuxOnly] [NodeConformance] [Serial]", func() {
f := framework.NewDefaultFramework("oomkiller-test")
f.NamespacePodSecurityLevel = admissionapi.LevelPrivileged