Skip to content

Commit 46ea3d2

Browse files
committed
Skip Pod Level Resources tests
Signed-off-by: Ciprian Hacman <[email protected]>
1 parent 9ad7b96 commit 46ea3d2

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

tests/e2e/pkg/tester/skip_regex.go

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,14 @@ func (t *Tester) setSkipRegexFlag() error {
4343

4444
skipRegex := skipRegexBase
4545

46-
//.Skip.broken.test,.see.https://github.com/kubernetes/kubernetes/pull/133262
46+
if k8sVersion.Minor < 35 {
47+
// cpu.weight value changed in runc 1.3.2
48+
// https://github.com/kubernetes/kubernetes/issues/135214
49+
// https://github.com/opencontainers/runc/issues/4896
50+
skipRegex += "|[Burstable|Guaranteed].QoS.pod"
51+
}
52+
53+
// Skip broken test, see https://github.com/kubernetes/kubernetes/pull/133262
4754
skipRegex += "|blackbox.*should.not.be.able.to.pull.image.from.invalid.registry"
4855
skipRegex += "|blackbox.*should.be.able.to.pull.from.private.registry.with.secret"
4956

0 commit comments

Comments
 (0)