Skip to content

Commit 2fc3dda

Browse files
authored
Merge pull request #18193 from rifelpet/skip-138
Continue skipping networking tests in k8s 1.37
2 parents d056a47 + 9659c1e commit 2fc3dda

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/e2e/pkg/tester/skip_regex.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ func (t *Tester) setSkipRegexFlag() error {
8686
// https://github.com/kubernetes/kubernetes/blob/418ae605ec1b788d43bff7ac44af66d8b669b833/test/e2e/network/networking.go#L135
8787
skipRegex += "|should.check.kube-proxy.urls"
8888

89-
if k8sVersion.Minor < 37 {
89+
if k8sVersion.Minor < 38 {
9090
// This seems to be specific to the kube-proxy replacement
91-
// < 36 so we look at this again
91+
// < 38 so we look at this again
9292
skipRegex += "|Services.should.support.externalTrafficPolicy.Local.for.type.NodePort"
9393
// https://github.com/kubernetes/kubernetes/issues/129221
9494
}
@@ -137,8 +137,8 @@ func (t *Tester) setSkipRegexFlag() error {
137137
// ref: https://github.com/kubernetes/kubernetes/issues/123255
138138
// ref: https://github.com/kubernetes/kubernetes/issues/121018
139139
// ref: https://github.com/kubernetes/kubernetes/pull/126896
140-
// < 37 so we look at this again
141-
if k8sVersion.Minor < 37 {
140+
// < 38 so we look at this again
141+
if k8sVersion.Minor < 38 {
142142
skipRegex += "|Services.should.function.for.service.endpoints.using.hostNetwork"
143143
skipRegex += "|Services.should.implement.NodePort.and.HealthCheckNodePort.correctly.when.ExternalTrafficPolicy.changes"
144144
}

0 commit comments

Comments
 (0)