Merge pull request #136593 from RomanBednar/automated-cherry-pick-of-#136202-upstream-release-1.35

Automated cherry pick of #136202: csi: raise kubelet CSI init backoff to cover ~140s DNS delays
This commit is contained in:
Kubernetes Prow Robot
2026-02-05 17:32:47 +05:30
committed by GitHub

View File

@@ -387,8 +387,8 @@ func initializeCSINode(host volume.VolumeHost, csiDriverInformer cache.SharedInd
// after max retry steps.
initBackoff := wait.Backoff{
Steps: 6,
Duration: 15 * time.Millisecond,
Factor: 6.0,
Duration: 30 * time.Millisecond,
Factor: 8.0,
Jitter: 0.1,
}
err = wait.ExponentialBackoff(initBackoff, func() (bool, error) {