rebase: bump github.com/ceph/go-ceph from 0.20.0 to 0.21.0

Bumps [github.com/ceph/go-ceph](https://github.com/ceph/go-ceph) from 0.20.0 to 0.21.0.
- [Release notes](https://github.com/ceph/go-ceph/releases)
- [Changelog](https://github.com/ceph/go-ceph/blob/master/docs/release-process.md)
- [Commits](https://github.com/ceph/go-ceph/compare/v0.20.0...v0.21.0)

---
updated-dependencies:
- dependency-name: github.com/ceph/go-ceph
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2023-04-26 07:05:57 +00:00
committed by mergify[bot]
parent c8f6878570
commit d05847ee73
64 changed files with 1255 additions and 488 deletions

View File

@ -40,7 +40,8 @@ func (ra *RBDAdmin) MirrorSnashotSchedule() *MirrorSnashotScheduleAdmin {
// level spec.
//
// Similar To:
// rbd mirror snapshot schedule add <level_spec> <interval> <start_time>
//
// rbd mirror snapshot schedule add <level_spec> <interval> <start_time>
func (mss *MirrorSnashotScheduleAdmin) Add(l LevelSpec, i Interval, s StartTime) error {
m := map[string]string{
"prefix": "rbd mirror snapshot schedule add",
@ -59,7 +60,8 @@ func (mss *MirrorSnashotScheduleAdmin) Add(l LevelSpec, i Interval, s StartTime)
// List the snapshot schedules based on the supplied level spec.
//
// Similar To:
// rbd mirror snapshot schedule list <level_spec>
//
// rbd mirror snapshot schedule list <level_spec>
func (mss *MirrorSnashotScheduleAdmin) List(l LevelSpec) ([]SnapshotSchedule, error) {
m := map[string]string{
"prefix": "rbd mirror snapshot schedule list",
@ -114,7 +116,8 @@ func parseMirrorSnapshotScheduleList(res commands.Response) (
// Remove a snapshot schedule matching the supplied arguments.
//
// Similar To:
// rbd mirror snapshot schedule remove <level_spec> <interval> <start_time>
//
// rbd mirror snapshot schedule remove <level_spec> <interval> <start_time>
func (mss *MirrorSnashotScheduleAdmin) Remove(
l LevelSpec, i Interval, s StartTime) error {
@ -136,7 +139,8 @@ func (mss *MirrorSnashotScheduleAdmin) Remove(
// matching the supplied level spec.
//
// Similar To:
// rbd mirror snapshot schedule status <level_spec>
//
// rbd mirror snapshot schedule status <level_spec>
func (mss *MirrorSnashotScheduleAdmin) Status(l LevelSpec) ([]ScheduledImage, error) {
m := map[string]string{
"prefix": "rbd mirror snapshot schedule status",