From dd887bcdcce7804affca2658f732f736c7fdfd78 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 --- .../src/app/ceph/block/rbd-form/rbd-form.component.html | 6 +++--- .../src/app/ceph/block/rbd-form/rbd-form.component.ts | 8 ++++++-- 2 files changed, 9 insertions(+), 5 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 75c004fabe9d30..d803eb51ab60c7 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 @@ -262,7 +262,7 @@
+ for="size">Object sizeObject Size: Objects 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 countStripe Count: The 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.