mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-12-18 02:50:30 +00:00
cephfs: drop unused Credentials from resizeVolume()
When using go-ceph and the volumeOptions.Connect() call, the credentials are not needed once the connection is established. Signed-off-by: Niels de Vos <ndevos@redhat.com>
This commit is contained in:
parent
5baed6190c
commit
9732cf16a1
@ -100,7 +100,7 @@ func createCloneFromSubvolume(ctx context.Context, volID, cloneID volumeID, volO
|
|||||||
return cloneFailedErr
|
return cloneFailedErr
|
||||||
case cephFSCloneComplete:
|
case cephFSCloneComplete:
|
||||||
// This is a work around to fix sizing issue for cloned images
|
// This is a work around to fix sizing issue for cloned images
|
||||||
err = volOpt.resizeVolume(ctx, cr, cloneID, volOpt.Size)
|
err = volOpt.resizeVolume(ctx, cloneID, volOpt.Size)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
util.ErrorLog(ctx, "failed to expand volume %s: %v", cloneID, err)
|
util.ErrorLog(ctx, "failed to expand volume %s: %v", cloneID, err)
|
||||||
return err
|
return err
|
||||||
@ -179,7 +179,7 @@ func createCloneFromSnapshot(ctx context.Context, parentVolOpt, volOptions *volu
|
|||||||
// The clonedvolume currently does not reflect the proper size due to an issue in cephfs
|
// The clonedvolume currently does not reflect the proper size due to an issue in cephfs
|
||||||
// however this is getting addressed in cephfs and the parentvolume size will be reflected
|
// however this is getting addressed in cephfs and the parentvolume size will be reflected
|
||||||
// in the new cloned volume too. Till then we are explicitly making the size set
|
// in the new cloned volume too. Till then we are explicitly making the size set
|
||||||
err = volOptions.resizeVolume(ctx, cr, volumeID(vID.FsSubvolName), volOptions.Size)
|
err = volOptions.resizeVolume(ctx, volumeID(vID.FsSubvolName), volOptions.Size)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
util.ErrorLog(ctx, "failed to expand volume %s with error: %v", vID.FsSubvolName, err)
|
util.ErrorLog(ctx, "failed to expand volume %s with error: %v", vID.FsSubvolName, err)
|
||||||
return err
|
return err
|
||||||
|
@ -186,7 +186,7 @@ func (cs *ControllerServer) CreateVolume(ctx context.Context, req *csi.CreateVol
|
|||||||
// it will be fixed in cephfs soon with the parentvolume size. Till then by below
|
// it will be fixed in cephfs soon with the parentvolume size. Till then by below
|
||||||
// resize we are making sure we return or satisfy the requested size by setting the size
|
// resize we are making sure we return or satisfy the requested size by setting the size
|
||||||
// explictly
|
// explictly
|
||||||
err = volOptions.resizeVolume(ctx, cr, volumeID(vID.FsSubvolName), volOptions.Size)
|
err = volOptions.resizeVolume(ctx, volumeID(vID.FsSubvolName), volOptions.Size)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
purgeErr := purgeVolume(ctx, volumeID(vID.FsSubvolName), cr, volOptions, false)
|
purgeErr := purgeVolume(ctx, volumeID(vID.FsSubvolName), cr, volOptions, false)
|
||||||
if purgeErr != nil {
|
if purgeErr != nil {
|
||||||
@ -426,7 +426,7 @@ func (cs *ControllerServer) ControllerExpandVolume(ctx context.Context, req *csi
|
|||||||
|
|
||||||
RoundOffSize := util.RoundOffBytes(req.GetCapacityRange().GetRequiredBytes())
|
RoundOffSize := util.RoundOffBytes(req.GetCapacityRange().GetRequiredBytes())
|
||||||
|
|
||||||
if err = volOptions.resizeVolume(ctx, cr, volumeID(volIdentifier.FsSubvolName), RoundOffSize); err != nil {
|
if err = volOptions.resizeVolume(ctx, volumeID(volIdentifier.FsSubvolName), RoundOffSize); err != nil {
|
||||||
util.ErrorLog(ctx, "failed to expand volume %s: %v", volumeID(volIdentifier.FsSubvolName), err)
|
util.ErrorLog(ctx, "failed to expand volume %s: %v", volumeID(volIdentifier.FsSubvolName), err)
|
||||||
return nil, status.Error(codes.Internal, err.Error())
|
return nil, status.Error(codes.Internal, err.Error())
|
||||||
}
|
}
|
||||||
|
@ -176,7 +176,7 @@ func createVolume(ctx context.Context, volOptions *volumeOptions, volID volumeID
|
|||||||
// resizeVolume will try to use ceph fs subvolume resize command to resize the
|
// resizeVolume will try to use ceph fs subvolume resize command to resize the
|
||||||
// subvolume. If the command is not available as a fallback it will use
|
// subvolume. If the command is not available as a fallback it will use
|
||||||
// CreateVolume to resize the subvolume.
|
// CreateVolume to resize the subvolume.
|
||||||
func (vo *volumeOptions) resizeVolume(ctx context.Context, cr *util.Credentials, volID volumeID, bytesQuota int64) error {
|
func (vo *volumeOptions) resizeVolume(ctx context.Context, volID volumeID, bytesQuota int64) error {
|
||||||
// keyPresent checks whether corresponding clusterID key is present in clusterAdditionalInfo
|
// keyPresent checks whether corresponding clusterID key is present in clusterAdditionalInfo
|
||||||
var keyPresent bool
|
var keyPresent bool
|
||||||
// verify if corresponding ClusterID key is present in the map,
|
// verify if corresponding ClusterID key is present in the map,
|
||||||
|
Loading…
Reference in New Issue
Block a user