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 ead2102 commit a262c80Copy full SHA for a262c80
pkg/kubelet/prober/worker.go
@@ -316,7 +316,7 @@ func (w *worker) doProbe(ctx context.Context) (keepGoing bool) {
316
317
w.resultsManager.Set(w.containerID, result, w.pod)
318
319
- if (w.probeType == liveness && result == results.Failure) || (w.probeType == startup && (result == results.Success || result == results.Failure)) {
+ if (w.probeType == liveness && result == results.Failure) || w.probeType == startup {
320
// The container fails a liveness/startup check, it will need to be restarted.
321
// Stop probing until we see a new container ID. This is to reduce the
322
// chance of hitting #21751, where running `docker exec` when a
0 commit comments