-
Notifications
You must be signed in to change notification settings - Fork 336
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Retry provisioning of volumes after transient error
The provisioner should retry CreateVolume call after a transient error (such as timeout), because the CSI driver may be creating a volume in the background. Therefore ProvisionerExt interface need to be implemented. ProvisionExt() returns: - Finished, if it can be 100% sure that the driver is not creating a volume - NoChange, if something (temporarily?) failed before reaching the CSI driver, for example when Kubernetes API server is not reachable. - InBackground, if error returned by the driver (or gRPC) is transient.
- Loading branch information
Showing
2 changed files
with
150 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.