testing: Skip broken test that depends on expired credential

This commit is contained in:
Ciprian Hacman 2025-07-29 08:15:23 +03:00
parent ba29e4b272
commit 04e6c19435
1 changed files with 4 additions and 0 deletions

View File

@ -50,6 +50,10 @@ func (t *Tester) setSkipRegexFlag() error {
skipRegex := skipRegexBase
//.Skip.broken.test,.see.https://github.com/kubernetes/kubernetes/pull/133262
skipRegex += "|blackbox.*should.not.be.able.to.pull.image.from.invalid.registry"
skipRegex += "|blackbox.*should.be.able.to.pull.from.private.registry.with.secret"
if !isPre28 {
// K8s 1.28 promoted ProxyTerminatingEndpoints to GA, but it has limited CNI support
// https://github.com/kubernetes/kubernetes/pull/117718