From a249389e66de0cbd5e3c4f16775a0992fb96d315 Mon Sep 17 00:00:00 2001 From: Samuel Just Date: Mon, 26 Apr 2021 13:52:46 -0700 Subject: [PATCH] vstart.sh: add --seastore Signed-off-by: Samuel Just --- src/vstart.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/vstart.sh b/src/vstart.sh index afedeb6f204..5273442f5de 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" ;; -- 2.39.5