Skip to content

Commit e8efa65

Browse files
committed
Restore retry for the flaky conntrack UDP test
A new test case, "[sig-network] Conntrack should be able to preserve UDP traffic when server pod cycles for a NodePort service", is added to the list of tests that are retried on failure. This is to mitigate the impact of a known flake in this test. OCPBUGS-59496 Signed-off-by: Peng Liu <pliu@redhat.com>
1 parent cc8ae10 commit e8efa65

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pkg/test/ginkgo/cmd_runsuite.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,9 +160,10 @@ func shouldRetryTest(ctx context.Context, test *testCase, permittedRetryImageTag
160160
// were actually flaky and nobody knew. We attempted to fix these, a few did not make it in time. Restore
161161
// retries for specific test names so the overall suite can continue to not retry.
162162
retryTestNames := []string{
163-
"[sig-instrumentation] Metrics should grab all metrics from kubelet /metrics/resource endpoint [Suite:openshift/conformance/parallel] [Suite:k8s]", // https://issues.redhat.com/browse/OCPBUGS-57477
164-
"[sig-network] Services should be rejected for evicted pods (no endpoints exist) [Suite:openshift/conformance/parallel] [Suite:k8s]", // https://issues.redhat.com/browse/OCPBUGS-57665
165-
"[sig-node] Pods Extended Pod Container lifecycle evicted pods should be terminal [Suite:openshift/conformance/parallel] [Suite:k8s]", // https://issues.redhat.com/browse/OCPBUGS-57658
163+
"[sig-instrumentation] Metrics should grab all metrics from kubelet /metrics/resource endpoint [Suite:openshift/conformance/parallel] [Suite:k8s]", // https://issues.redhat.com/browse/OCPBUGS-57477
164+
"[sig-network] Services should be rejected for evicted pods (no endpoints exist) [Suite:openshift/conformance/parallel] [Suite:k8s]", // https://issues.redhat.com/browse/OCPBUGS-57665
165+
"[sig-node] Pods Extended Pod Container lifecycle evicted pods should be terminal [Suite:openshift/conformance/parallel] [Suite:k8s]", // https://issues.redhat.com/browse/OCPBUGS-57658
166+
"[sig-network] Conntrack should be able to preserve UDP traffic when server pod cycles for a NodePort service [Suite:openshift/conformance/parallel] [Suite:k8s]", // https://issues.redhat.com/browse/OCPBUGS-59496
166167
}
167168
for _, rtn := range retryTestNames {
168169
if test.name == rtn {

0 commit comments

Comments
 (0)