Skip to content

OCPBUGS-53249: skip UDP LoadBalancer on external #2247

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions openshift-hack/cmd/k8s-tests-ext/environment_selectors.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,11 @@ func filterByPlatform(specs et.ExtensionTestSpecs) {
// https://issues.redhat.com/browse/OCPBUGS-38840
"[Feature:LoadBalancer]",
},
"external": {
// LoadBalancer tests in 1.31 require explicit platform-specific skips
// https://issues.redhat.com/browse/OCPBUGS-53249
"[sig-network] LoadBalancers [Feature:LoadBalancer] should be able to preserve UDP traffic when server pod cycles for a LoadBalancer service on",
},
}

for platform, exclusions := range platformExclusions {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions openshift-hack/e2e/annotate/rules.go
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,11 @@ var (
`\[sig-network\] LoadBalancers \[Feature:LoadBalancer\] .* UDP`,
`\[sig-network\] LoadBalancers \[Feature:LoadBalancer\] .* session affinity`,
},
"[Skipped:external]": {
// LoadBalancer tests in 1.31 require explicit platform-specific skips
// https://issues.redhat.com/browse/OCPBUGS-53249
`\[sig-network\] LoadBalancers \[Feature:LoadBalancer\] should be able to preserve UDP traffic when server pod cycles for a LoadBalancer service on`,
},
"[Skipped:azure]": {
"Networking should provide Internet connection for containers", // Azure does not allow ICMP traffic to internet.
// Azure CSI migration changed how we treat regions without zones.
Expand Down