mirror of https://github.com/k3s-io/k3s
Merge pull request #61721 from liggitt/container-probe-timeout
Automatic merge from submit-queue (batch tested with PRs 46903, 61721, 62317). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Double container probe timeout in some environments, we see a combination of start latency and the corresponding effect on sync pod latency causing status manager to fail to report within the 2 minute window. ```release-note NONE ```pull/8/head
commit
72a44f95f5
|
@ -37,7 +37,7 @@ const (
|
|||
probTestContainerName = "test-webserver"
|
||||
probTestInitialDelaySeconds = 15
|
||||
|
||||
defaultObservationTimeout = time.Minute * 2
|
||||
defaultObservationTimeout = time.Minute * 4
|
||||
)
|
||||
|
||||
var _ = framework.KubeDescribe("Probing container", func() {
|
||||
|
|
|
@ -122,7 +122,7 @@ const (
|
|||
slowPodStartTimeout = 15 * time.Minute
|
||||
|
||||
// How long to wait for a service endpoint to be resolvable.
|
||||
ServiceStartTimeout = 1 * time.Minute
|
||||
ServiceStartTimeout = 3 * time.Minute
|
||||
|
||||
// How often to Poll pods, nodes and claims.
|
||||
Poll = 2 * time.Second
|
||||
|
|
Loading…
Reference in New Issue