We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What would you like to be added: the arguments:
retryIntervalMax = flag.Duration("retry-interval-max", 2*time.Minute, "Maximum retry interval of failed deletion.") retryTimesMax = flag.Int("retry-times-max", 10, "Maximum retry times of failed detach volume.")
retryIntervalMax: is this still needed? as the sidecar already have exponential backoff.
retryTimesMax: 10 is too small as default. 100 may be better. And it should allow to completely disable this limits. such as a value of 0 or -1.
The text was updated successfully, but these errors were encountered:
dkeven
Successfully merging a pull request may close this issue.
What would you like to be added:
the arguments:
retryIntervalMax: is this still needed? as the sidecar already have exponential backoff.
retryTimesMax: 10 is too small as default. 100 may be better. And it should allow to completely disable this limits. such as a value of 0 or -1.
The text was updated successfully, but these errors were encountered: