Skip to content

Commit f288690

Browse files
authored
Merge pull request #17745 from hakman/skip-pod-level-resources-tests
test: Skip Pod Level Resources tests
2 parents 9ad7b96 + 46ea3d2 commit f288690

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)