mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
23c324898a
go-ceph v0.16.0 contains subvolume metadata APIs and subvolume snapshot metadata APIs. Please note, as the APIs can not be tested in the go-ceph CI, it requires build-tag `ceph_ci_untested`. Signed-off-by: Prasanna Kumar Kalever <prasanna.kalever@redhat.com>
26 lines
665 B
Go
26 lines
665 B
Go
package admin
|
|
|
|
import (
|
|
"github.com/ceph/go-ceph/common/admin/manager"
|
|
)
|
|
|
|
const mirroring = "mirroring"
|
|
|
|
// EnableMirroringModule will enable the mirroring module for cephfs.
|
|
//
|
|
// Similar To:
|
|
// ceph mgr module enable mirroring [--force]
|
|
func (fsa *FSAdmin) EnableMirroringModule(force bool) error {
|
|
mgradmin := manager.NewFromConn(fsa.conn)
|
|
return mgradmin.EnableModule(mirroring, force)
|
|
}
|
|
|
|
// DisableMirroringModule will disable the mirroring module for cephfs.
|
|
//
|
|
// Similar To:
|
|
// ceph mgr module disable mirroring
|
|
func (fsa *FSAdmin) DisableMirroringModule() error {
|
|
mgradmin := manager.NewFromConn(fsa.conn)
|
|
return mgradmin.DisableModule(mirroring)
|
|
}
|