From 02ef0822c39239597a4fe5e3aa2609582aa97be1 Mon Sep 17 00:00:00 2001 From: ganganxiaojiu Date: Sun, 7 Jan 2024 15:40:29 +0800 Subject: [PATCH] specify the olap volume size --- cmd/create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/create.go b/cmd/create.go index 42607ed..8eed001 100755 --- a/cmd/create.go +++ b/cmd/create.go @@ -91,7 +91,7 @@ func newClusterCreateCmd(out io.Writer, errOut io.Writer) *cobra.Command { } cmd = DisableHelp(cmd) f := cmd.Flags() - f.IntVarP(&c.clusterOpts.DataVolume, "data-volume", "v", 32, "total raw data volumes of the ninecluster,Uint Gi, e.g. 16") + f.IntVarP(&c.clusterOpts.DataVolume, "data-volume", "v", 32, "total raw data volumes of the ninecluster,the unit is Gi, e.g. 16") f.StringVarP(&c.clusterOpts.Olap, "olap", "a", "", fmt.Sprintf("add olap to the ninecluster,support [%s]", olapsSupported)) f.IntVar(&c.clusterOpts.OlapVolume, "olap-volume", 100, "olap storage volume size") f.BoolVar(&DEBUG, "debug", false, "print debug information")