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.
1 parent 42e198e commit 2fa0144Copy full SHA for 2fa0144
vertical-pod-autoscaler/pkg/updater/logic/updater.go
@@ -53,7 +53,12 @@ import (
53
)
54
55
const (
56
- DeferredResizeUpdateTimeout = 1 * time.Minute
+ // DeferredResizeUpdateTimeout defines the duration during which an in-place resize request
57
+ // is considered deferred. If the resize is not completed within this time, it falls back to eviction.
58
+ DeferredResizeUpdateTimeout = 1 * time.Minute
59
+
60
+ // InProgressResizeUpdateTimeout defines the duration during which an in-place resize request
61
+ // is considered in progress. If the resize is not completed within this time, it falls back to eviction.
62
InProgressResizeUpdateTimeout = 1 * time.Hour
63
64
0 commit comments