Skip to content

Commit

Permalink
Use 10s period for image pulling backoff
Browse files Browse the repository at this point in the history
This is consistent with the container restart backoff period.
  • Loading branch information
yujuhong committed Nov 20, 2015
1 parent 893c99b commit 41a9ab3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/kubelet/kubelet.go
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ func NewMainKubelet(
}

procFs := procfs.NewProcFS()
imageBackOff := util.NewBackOff(resyncInterval, MaxContainerBackOff)
imageBackOff := util.NewBackOff(backOffPeriod, MaxContainerBackOff)

klet.livenessManager = proberesults.NewManager()

Expand Down

0 comments on commit 41a9ab3

Please sign in to comment.