mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-14 02:43:36 +00:00
rbd: use GetCreationTime()
to build the CSI-Snapshot object
Signed-off-by: Niels de Vos <ndevos@ibm.com>
This commit is contained in:
committed by
mergify[bot]
parent
8ddb615df2
commit
f885c77f4e
@ -145,11 +145,16 @@ func (rbdSnap *rbdSnapshot) toVolume() *rbdVolume {
|
||||
}
|
||||
|
||||
func (rbdSnap *rbdSnapshot) ToCSI(ctx context.Context) (*csi.Snapshot, error) {
|
||||
created, err := rbdSnap.GetCreationTime(ctx)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return &csi.Snapshot{
|
||||
SizeBytes: rbdSnap.VolSize,
|
||||
SnapshotId: rbdSnap.VolID,
|
||||
SourceVolumeId: rbdSnap.SourceVolumeID,
|
||||
CreationTime: timestamppb.New(*rbdSnap.CreatedAt),
|
||||
CreationTime: timestamppb.New(*created),
|
||||
ReadyToUse: true,
|
||||
}, nil
|
||||
}
|
||||
|
Reference in New Issue
Block a user