Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions rust/stackablectl/src/cmds/operator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,16 +86,15 @@ pub struct OperatorDescribeArgs {
pub struct OperatorInstallArgs {
/// Operator(s) to install
#[arg(name = "OPERATORS", required = true)]
#[arg(long_help = "Operator(s) to install
#[arg(long_help = "Operator(s) to install (space separated)

Must have the form 'name[=version]'. If no version is specified the latest
nightly version - build from the main branch - will be used. Possible valid
values are:
Each must have the form 'name[=version]'.
If no version is specified the latest nightly version - built from the main branch - will be used.
Possible valid values are:

- superset
- superset=0.3.0
- superset=0.3.0-nightly
- superset=0.3.0-pr123
- superset (equivalent to superset=0.0.0-dev)
- superset=25.3.0
- superset=0.0.0-pr123 (Pull Request build)

Use \"stackablectl operator list\" to list available versions for all operators
Use \"stackablectl operator describe <OPERATOR>\" to get available versions for one operator")]
Expand Down
Loading