Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 671ecce

Browse files
committedJan 3, 2025·
OCPBUGS-44238: Add Readiness Probe to Router Status Tests
Previously, the router was configured without a readiness probe, resulting in racy startup conditions during router status stress tests. Routers would be marked as ready immediately upon starting, causing the waitForReadyReplicaSet function to proceed prematurely. This allowed the next step of route creation to occur before the routers had fully initialized. This often led to the first two routers to fight over the route status while the third router was still starting. As a result, the third router missed observing these early status contentions, leading to more writes to the route status than we were expecting.
1 parent 929fc7c commit 671ecce

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
 

‎test/extended/router/stress.go

+8
Original file line numberDiff line numberDiff line change
@@ -557,6 +557,14 @@ func scaledRouter(name, image string, args []string) *appsv1.ReplicaSet {
557557
Name: "router",
558558
Image: image,
559559
Args: args,
560+
ReadinessProbe: &corev1.Probe{
561+
ProbeHandler: corev1.ProbeHandler{
562+
HTTPGet: &corev1.HTTPGetAction{
563+
Path: "/healthz/ready",
564+
Port: intstr.FromInt32(1936),
565+
},
566+
},
567+
},
560568
},
561569
},
562570
},

0 commit comments

Comments
 (0)
Please sign in to comment.