mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-22 22:30:23 +00:00
cephfs: implement getCloneState() with go-ceph
Signed-off-by: Niels de Vos <ndevos@redhat.com>
This commit is contained in:
parent
476ad18d2e
commit
055975f790
@ -209,35 +209,17 @@ func createCloneFromSnapshot(ctx context.Context, parentVolOpt, volOptions *volu
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (vo *volumeOptions) getCloneState(ctx context.Context, cr *util.Credentials, volID volumeID) (cephFSCloneState, error) {
|
func (vo *volumeOptions) getCloneState(ctx context.Context, cr *util.Credentials, volID volumeID) (cephFSCloneState, error) {
|
||||||
type cloneStatus struct {
|
fsa, err := vo.conn.GetFSAdmin()
|
||||||
Status struct {
|
|
||||||
State string `json:"state"`
|
|
||||||
} `json:"status"`
|
|
||||||
}
|
|
||||||
|
|
||||||
cs := cloneStatus{}
|
|
||||||
args := []string{
|
|
||||||
"fs",
|
|
||||||
"clone",
|
|
||||||
"status",
|
|
||||||
vo.FsName,
|
|
||||||
string(volID),
|
|
||||||
"--group_name",
|
|
||||||
vo.SubvolumeGroup,
|
|
||||||
"-m", vo.Monitors,
|
|
||||||
"-c", util.CephConfigPath,
|
|
||||||
"-n", cephEntityClientPrefix + cr.ID,
|
|
||||||
"--keyfile=" + cr.KeyFile,
|
|
||||||
"--format=json",
|
|
||||||
}
|
|
||||||
err := execCommandJSON(
|
|
||||||
ctx,
|
|
||||||
&cs,
|
|
||||||
"ceph",
|
|
||||||
args[:]...)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
util.ErrorLog(ctx, "failed to get subvolume clone info %s(%s) in fs %s", string(volID), err, vo.FsName)
|
util.ErrorLog(ctx, "could not get FSAdmin, can get clone status for volume %s with ID %s: %v", vo.FsName, string(volID), err)
|
||||||
return cephFSCloneError, err
|
return cephFSCloneError, err
|
||||||
}
|
}
|
||||||
return cephFSCloneState(cs.Status.State), nil
|
|
||||||
|
cs, err := fsa.CloneStatus(vo.FsName, vo.SubvolumeGroup, string(volID))
|
||||||
|
if err != nil {
|
||||||
|
util.ErrorLog(ctx, "could not get clone state for volume %s with ID %s: %v", vo.FsName, string(volID), err)
|
||||||
|
return cephFSCloneError, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return cephFSCloneState(cs.State), nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user