From: Samuel Just Date: Mon, 26 Apr 2021 20:52:46 +0000 (-0700) Subject: vstart.sh: add --seastore X-Git-Tag: v17.1.0~2043^2~4 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=a249389e66de0cbd5e3c4f16775a0992fb96d315;p=ceph.git vstart.sh: add --seastore Signed-off-by: Samuel Just --- diff --git a/src/vstart.sh b/src/vstart.sh index afedeb6f2046a..5273442f5de01 100755 --- a/src/vstart.sh +++ b/src/vstart.sh @@ -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" ;;