Skip to content
Merged
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
11 changes: 8 additions & 3 deletions tests/e2e/pkg/tester/skip_regex.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,11 @@ func (t *Tester) setSkipRegexFlag() error {
}

if cluster.Spec.LegacyCloudProvider == "digitalocean" {
// https://github.com/kubernetes/kubernetes/issues/121018
skipRegex += "|Services.should.respect.internalTrafficPolicy=Local.Pod.and.Node,.to.Pod|Services.should.function.for.service.endpoints.using.hostNetwork"
skipRegex += "|Services.should.respect.internalTrafficPolicy=Local.Pod.and.Node,.to.Pod"
if k8sVersion.Minor < 31 {
// https://github.com/kubernetes/kubernetes/issues/121018
skipRegex += "|Services.should.function.for.service.endpoints.using.hostNetwork"
}
}

if cluster.Spec.LegacyCloudProvider == "gce" {
Expand Down Expand Up @@ -144,7 +147,9 @@ func (t *Tester) setSkipRegexFlag() error {
// Dedicated job testing this: https://testgrid.k8s.io/kops-misc#kops-aws-k28-hostname-bug123255
// ref: https://github.com/kubernetes/kops/issues/16349
// ref: https://github.com/kubernetes/kubernetes/issues/123255
skipRegex += "|Services.should.function.for.service.endpoints.using.hostNetwork"
if k8sVersion.Minor < 31 {
skipRegex += "|Services.should.function.for.service.endpoints.using.hostNetwork"
}

if k8sVersion.Minor <= 26 {
// Prow jobs are being migrated to community-owned EKS clusters.
Expand Down