csi: raise kubelet CSI init backoff to cover ~140s DNS delays

- bump init backoff to Duration=30ms, Factor=8 (Steps=6) to yield ~140s total
- prevent kubelet restarts when DNS is blackholed and NSS must fall back to myhostname
- keep CSI/CSINode initialization alive long enough to complete in ARO DNS-failure scenarios
This commit is contained in:
Roman Bednar
2026-01-13 13:56:27 +01:00
parent 41b9b1f939
commit c45940ecdb

View File

@@ -385,8 +385,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) {