Merge pull request #17523 from hakman/fix-e2e-job-name

testing: Fix e2e test job name
This commit is contained in:
Kubernetes Prow Robot 2025-07-29 02:42:01 -07:00 committed by GitHub
commit 5a0fce0f6b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View File

@ -342,7 +342,7 @@ func defaultClusterName(cloudProvider string) (string, error) {
}
if suffix != "" {
jobName = jobType + "." + suffix
jobName = jobName + "." + suffix
}
return jobName, nil

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