mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-27 21:47:07 +00:00
Merge pull request #33859 from luxas/not_so_aggressve_probes
Automatic merge from submit-queue Do not probe so aggressively which may lead to unnecessary restarts @errordeveloper @mikedanese PTAL I came across a case where etcd restarted about 5-10 times because the load was very high on the machine. The load seems to have lead to that the `etcd` container occasionally didn't respond to the probe, which caused many restart and made the whole thing even worse. Maybe we should remove the etcd probe totally? I don't know, what do you think? This is at least a try to loosen the limits here...
This commit is contained in:
commit
64d2b12d21
@ -195,6 +195,7 @@ func componentProbe(port int, path string) *api.Probe {
|
|||||||
},
|
},
|
||||||
InitialDelaySeconds: 15,
|
InitialDelaySeconds: 15,
|
||||||
TimeoutSeconds: 15,
|
TimeoutSeconds: 15,
|
||||||
|
FailureThreshold: 8,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user