diff --git a/internal/cli/kraft/cloud/deploy/deploy.go b/internal/cli/kraft/cloud/deploy/deploy.go index db144c890..c2b723015 100644 --- a/internal/cli/kraft/cloud/deploy/deploy.go +++ b/internal/cli/kraft/cloud/deploy/deploy.go @@ -39,7 +39,7 @@ type DeployOptions struct { Jobs int `long:"jobs" short:"j" usage:"Allow N jobs at once"` KernelDbg bool `long:"dbg" usage:"Build the debuggable (symbolic) kernel image instead of the stripped image"` Kraftfile string `local:"true" long:"kraftfile" short:"K" usage:"Set the Kraftfile to use"` - Memory int64 `local:"true" long:"memory" short:"M" usage:"Specify the amount of memory to allocate"` + Memory int64 `local:"true" long:"memory" short:"M" usage:"Specify the amount of memory to allocate (MiB)"` Metro string `noattribute:"true"` Name string `local:"true" long:"name" short:"n" usage:"Name of the deployment"` NoCache bool `long:"no-cache" short:"F" usage:"Force a rebuild even if existing intermediate artifacts already exist"` diff --git a/internal/cli/kraft/cloud/instance/create/create.go b/internal/cli/kraft/cloud/instance/create/create.go index 73c8885a8..55cefd051 100644 --- a/internal/cli/kraft/cloud/instance/create/create.go +++ b/internal/cli/kraft/cloud/instance/create/create.go @@ -33,7 +33,7 @@ type CreateOptions struct { Features []string `local:"true" long:"feature" short:"f" usage:"List of features to enable"` FQDN string `local:"true" long:"fqdn" short:"d" usage:"The Fully Qualified Domain Name to use for the service"` Image string `noattribute:"true"` - Memory int64 `local:"true" long:"memory" short:"M" usage:"Specify the amount of memory to allocate"` + Memory int64 `local:"true" long:"memory" short:"M" usage:"Specify the amount of memory to allocate (MiB)"` Metro string `noattribute:"true"` Name string `local:"true" long:"name" short:"n" usage:"Specify the name of the package"` Output string `local:"true" long:"output" short:"o" usage:"Set output format. Options: table,yaml,json,full" default:"table"`