mirror of https://github.com/k3s-io/k3s
Increase the pod start short timeout
We have seen flakes related to this timeout. Signed-off-by: Mrunal Patel <mpatel@redhat.com>pull/58/head
parent
860d3cb32c
commit
c58fc8ce4b
|
@ -114,7 +114,7 @@ const (
|
||||||
// Same as `PodStartTimeout` to wait for the pod to be started, but shorter.
|
// Same as `PodStartTimeout` to wait for the pod to be started, but shorter.
|
||||||
// Use it case by case when we are sure pod start will not be delayed
|
// Use it case by case when we are sure pod start will not be delayed
|
||||||
// minutes by slow docker pulls or something else.
|
// minutes by slow docker pulls or something else.
|
||||||
PodStartShortTimeout = 1 * time.Minute
|
PodStartShortTimeout = 2 * time.Minute
|
||||||
|
|
||||||
// How long to wait for a pod to be deleted
|
// How long to wait for a pod to be deleted
|
||||||
PodDeleteTimeout = 5 * time.Minute
|
PodDeleteTimeout = 5 * time.Minute
|
||||||
|
|
Loading…
Reference in New Issue