We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d2fc678 + af54374 commit 09c065bCopy full SHA for 09c065b
pkg/start/start.go
@@ -43,9 +43,13 @@ const (
43
44
minResyncPeriod = 2 * time.Minute
45
46
- leaseDuration = 90 * time.Second
47
- renewDeadline = 45 * time.Second
48
- retryPeriod = 30 * time.Second
+ // TODO set the slower lease values after we're able to reliably shut down gracefully. This fixes the slow status update for now.
+ //leaseDuration = 90 * time.Second
+ //renewDeadline = 45 * time.Second
49
+ //retryPeriod = 30 * time.Second
50
+ leaseDuration = 30 * time.Second
51
+ renewDeadline = 15 * time.Second
52
+ retryPeriod = 10 * time.Second
53
)
54
55
// Options are the valid inputs to starting the CVO.
0 commit comments