Merge pull request #16144 from rifelpet/do-skip

Skip hostname test in DigitalOcean
This commit is contained in:
Kubernetes Prow Robot 2023-12-01 08:09:30 +01:00 committed by GitHub
commit 1b751da337
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -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