]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
vstart.sh: add --seastore
authorSamuel Just <sjust@redhat.com>
Mon, 26 Apr 2021 20:52:46 +0000 (13:52 -0700)
committerSamuel Just <sjust@redhat.com>
Fri, 7 May 2021 07:36:44 +0000 (00:36 -0700)
Signed-off-by: Samuel Just <sjust@redhat.com>
src/vstart.sh

index afedeb6f2046a4edb1558e04204d116296175692..5273442f5de01b43424ffb47728e38269b1b8066 100755 (executable)
@@ -216,6 +216,7 @@ usage=$usage"\t-o config\t\t add extra config parameters to all sections\n"
 usage=$usage"\t--rgw_port specify ceph rgw http listen port\n"
 usage=$usage"\t--rgw_frontend specify the rgw frontend configuration\n"
 usage=$usage"\t--rgw_compression specify the rgw compression plugin\n"
+usage=$usage"\t--seastore use seastore as crimson osd backend\n"
 usage=$usage"\t-b, --bluestore use bluestore as the osd objectstore backend (default)\n"
 usage=$usage"\t-f, --filestore use filestore as the osd objectstore backend\n"
 usage=$usage"\t-K, --kstore use kstore as the osd objectstore backend\n"
@@ -393,6 +394,9 @@ case $1 in
     --memstore)
         objectstore="memstore"
         ;;
+    --seastore)
+        objectstore="seastore"
+        ;;
     -b | --bluestore)
         objectstore="bluestore"
         ;;