Skip to content

Commit ebab5a7

Browse files
authored
Increase stalled pod timeout (#2084)
1 parent 5815899 commit ebab5a7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pkg/operator/resources/asyncapi/api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ import (
3939
)
4040

4141
const (
42-
_stalledPodTimeout = 10 * time.Minute
42+
_stalledPodTimeout = 15 * time.Minute
4343
_tickPeriodMetrics = 10 * time.Second
4444
)
4545

pkg/operator/resources/job/worker_stats.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
kcore "k8s.io/api/core/v1"
2626
)
2727

28-
const _stalledPodTimeout = 10 * time.Minute
28+
const _stalledPodTimeout = 15 * time.Minute
2929

3030
func GetWorkerCountsForJob(k8sJob kbatch.Job, pods []kcore.Pod) status.WorkerCounts {
3131
if k8sJob.Status.Failed > 0 {

pkg/operator/resources/realtimeapi/status.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131
kcore "k8s.io/api/core/v1"
3232
)
3333

34-
const _stalledPodTimeout = 10 * time.Minute
34+
const _stalledPodTimeout = 15 * time.Minute
3535

3636
func GetStatus(apiName string) (*status.Status, error) {
3737
var deployment *kapps.Deployment

0 commit comments

Comments
 (0)