mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-05-29 18:16:42 +00:00
rbd: delete volume if setallmetadata fails
If any operations fails after the volume creation we will cleanup the omap objects, but it is missing if setAllMetadata fails. This commits adds the code to cleanup the rbd image if metadata operation fails. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com> (cherry picked from commit 01d4a614c307188677a3fcec93fd303bbc7cc298)
This commit is contained in:
parent
454bcc466a
commit
42bed5a346
@ -384,6 +384,10 @@ func (cs *ControllerServer) CreateVolume(
|
||||
metadata := k8s.GetVolumeMetadata(req.GetParameters())
|
||||
err = rbdVol.setAllMetadata(metadata)
|
||||
if err != nil {
|
||||
if deleteErr := rbdVol.deleteImage(ctx); deleteErr != nil {
|
||||
log.ErrorLog(ctx, "failed to delete rbd image: %s with error: %v", rbdVol, deleteErr)
|
||||
}
|
||||
|
||||
return nil, err
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user