From b6f36475b25d14d68d681a2217e7e7f0cae0e259 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Wed, 3 Mar 2021 14:44:17 -0500 Subject: [PATCH] rbd admin: establish a new rbd/admin subpackage This package will be used for issuing json commands to the mgr (or mons, etc) that perform background tasks to administrate rbd pools, images, etc. This commit just adds a doc.go as a stub. Signed-off-by: John Mulligan --- rbd/admin/doc.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 rbd/admin/doc.go diff --git a/rbd/admin/doc.go b/rbd/admin/doc.go new file mode 100644 index 0000000..44d4fab --- /dev/null +++ b/rbd/admin/doc.go @@ -0,0 +1,10 @@ +/* +Package admin is a convenience layer to support the administration of +rbd volumes, snapshots, scheduling etc that is outside of the C api +for librbd. + +Unlike the rbd package this API does not map to APIs provided by +ceph libraries themselves. This API is not yet stable and is subject +to change. +*/ +package admin