Skip hostnetwork + hostname tests through 1.33

This commit is contained in:
Peter Rifel 2025-02-27 21:18:54 -06:00
parent 54f0126535
commit bb14406b51
No known key found for this signature in database
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"
}