From 52dc04ca8a5de0626b334c7544f806b7b7dbd79a Mon Sep 17 00:00:00 2001 From: Vrushal Chaudhari Date: Sun, 24 Apr 2022 13:41:43 -0700 Subject: [PATCH] mgr/dashboard: rbd striping setting pre-population and pop-over Pre-populating the stripe count to 1 (now it's empty). "1" means no "fancy striping", anything else enables the fancy striping. Adding a pop-over explaining each setting for striping (object size, stripe unit and stripe count). Fixes: https://tracker.ceph.com/issues/39726 Signed-off-by: Vrushal Chaudhari --- .../app/ceph/block/rbd-form/rbd-form.component.html | 6 +++--- .../app/ceph/block/rbd-form/rbd-form.component.ts | 12 +++++++++--- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-form/rbd-form.component.html b/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-form/rbd-form.component.html index ad55b26ff7a..38f20476207 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-form/rbd-form.component.html +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-form/rbd-form.component.html @@ -319,7 +319,7 @@
+ for="size">Object sizeObjects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit.
Stripe count + i18n>Stripe countThe Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set.