Skip to content

Commit 401bfff

Browse files
authored
Catalog Pod Startup Probe Timeout (#2919)
Updates the Startup Probe timeoutSeconds for catalog pods to be consistent with the timeouts in the readiness and liveness probes. Also adjusted the failure threshold in order to maintain the ~150s startup time failure as originally designed. Signed-off-by: Daniel Franz <[email protected]>
1 parent 231e922 commit 401bfff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/controller/registry/reconciler/reconciler.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,9 @@ func Pod(source *operatorsv1alpha1.CatalogSource, name string, img string, saNam
162162
Command: []string{"grpc_health_probe", "-addr=:50051"},
163163
},
164164
},
165-
FailureThreshold: 15,
165+
FailureThreshold: 10,
166166
PeriodSeconds: 10,
167+
TimeoutSeconds: 5,
167168
},
168169
Resources: corev1.ResourceRequirements{
169170
Requests: corev1.ResourceList{

0 commit comments

Comments
 (0)