Skip to content

Commit c9e894a

Browse files
Merge pull request #2247 from mtulio/OCPBUGS-53249
OCPBUGS-53249: skip UDP LoadBalancer on external
2 parents e15f4f8 + 0256129 commit c9e894a

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

Diff for: openshift-hack/cmd/k8s-tests-ext/environment_selectors.go

+5
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,11 @@ func filterByPlatform(specs et.ExtensionTestSpecs) {
114114
// https://issues.redhat.com/browse/OCPBUGS-38840
115115
"[Feature:LoadBalancer]",
116116
},
117+
"external": {
118+
// LoadBalancer tests in 1.31 require explicit platform-specific skips
119+
// https://issues.redhat.com/browse/OCPBUGS-53249
120+
"[sig-network] LoadBalancers [Feature:LoadBalancer] should be able to preserve UDP traffic when server pod cycles for a LoadBalancer service on",
121+
},
117122
}
118123

119124
for platform, exclusions := range platformExclusions {

Diff for: openshift-hack/e2e/annotate/generated/zz_generated.annotations.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: openshift-hack/e2e/annotate/rules.go

+5
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,11 @@ var (
246246
`\[sig-network\] LoadBalancers \[Feature:LoadBalancer\] .* UDP`,
247247
`\[sig-network\] LoadBalancers \[Feature:LoadBalancer\] .* session affinity`,
248248
},
249+
"[Skipped:external]": {
250+
// LoadBalancer tests in 1.31 require explicit platform-specific skips
251+
// https://issues.redhat.com/browse/OCPBUGS-53249
252+
`\[sig-network\] LoadBalancers \[Feature:LoadBalancer\] should be able to preserve UDP traffic when server pod cycles for a LoadBalancer service on`,
253+
},
249254
"[Skipped:azure]": {
250255
"Networking should provide Internet connection for containers", // Azure does not allow ICMP traffic to internet.
251256
// Azure CSI migration changed how we treat regions without zones.

0 commit comments

Comments
 (0)