mirror of https://github.com/kubernetes/kops.git
Merge pull request #17523 from hakman/fix-e2e-job-name
testing: Fix e2e test job name
This commit is contained in:
commit
5a0fce0f6b
|
|
@ -342,7 +342,7 @@ func defaultClusterName(cloudProvider string) (string, error) {
|
|||
}
|
||||
|
||||
if suffix != "" {
|
||||
jobName = jobType + "." + suffix
|
||||
jobName = jobName + "." + suffix
|
||||
}
|
||||
|
||||
return jobName, nil
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue