Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/e2e/kubetest2-kops/deployer/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ func defaultClusterName(cloudProvider string) (string, error) {
}

if suffix != "" {
jobName = jobType + "." + suffix
jobName = jobName + "." + suffix
}

return jobName, nil
Expand Down
4 changes: 4 additions & 0 deletions tests/e2e/pkg/tester/skip_regex.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading