Merge pull request #17293 from rifelpet/skip-hostname

Skip hostnetwork + hostname tests through 1.33
This commit is contained in:
Kubernetes Prow Robot 2025-02-27 20:18:30 -08:00 committed by GitHub
commit 806e038dc0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 2 deletions

View File

@ -167,8 +167,9 @@ func (t *Tester) setSkipRegexFlag() error {
// ref: https://github.com/kubernetes/kops/issues/16349
// ref: https://github.com/kubernetes/kubernetes/issues/123255
// ref: https://github.com/kubernetes/kubernetes/issues/121018
// < 33 so we look at this again
if k8sVersion.Minor < 33 {
// ref: https://github.com/kubernetes/kubernetes/pull/126896
// < 34 so we look at this again
if k8sVersion.Minor < 34 {
skipRegex += "|Services.should.function.for.service.endpoints.using.hostNetwork"
}