Skip to content

Commit

Permalink
fix: Increase ExecutionTimeout to 20m for large clusters
Browse files Browse the repository at this point in the history
  • Loading branch information
TwiN committed Oct 5, 2022
1 parent 027770b commit f354227
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const (
AnnotationTTL = "k8s-ttl-controller.twin.sh/ttl"

MaximumFailedExecutionBeforePanic = 10 // Maximum number of allowed failed executions before panicking
ExecutionTimeout = 10 * time.Minute // Maximum time for each reconciliation before timing out
ExecutionTimeout = 20 * time.Minute // Maximum time for each reconciliation before timing out
ExecutionInterval = 5 * time.Minute // Interval between each reconciliation
ThrottleDuration = 50 * time.Millisecond // Duration to sleep for throttling purposes
)
Expand Down

0 comments on commit f354227

Please sign in to comment.