Skip to content

Commit

Permalink
Merge pull request kubernetes#16144 from rifelpet/do-skip
Browse files Browse the repository at this point in the history
Skip hostname test in DigitalOcean
  • Loading branch information
k8s-ci-robot authored Dec 1, 2023
2 parents 2ed6bae + 5ae2b97 commit 1b751da
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/e2e/pkg/tester/skip_regex.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,11 @@ func (t *Tester) setSkipRegexFlag() error {
skipRegex += "|Services.*affinity"
}

if cluster.Spec.LegacyCloudProvider == "digitalocean" {
// https://github.com/kubernetes/kubernetes/issues/121018
skipRegex += "|Services.should.respect.internalTrafficPolicy=Local.Pod.and.Node,.to.Pod"
}

if cluster.Spec.LegacyCloudProvider == "gce" {
// Firewall tests expect a specific format for cluster and control plane host names
// which kOps does not match
Expand Down

0 comments on commit 1b751da

Please sign in to comment.