Skip to content

Commit a587d2b

Browse files
committed
updated comments and completions
1 parent c6d532f commit a587d2b

File tree

9 files changed

+40
-12
lines changed

9 files changed

+40
-12
lines changed

extra/completions/_stackablectl

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extra/completions/stackablectl.bash

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extra/completions/stackablectl.elv

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extra/completions/stackablectl.fish

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extra/completions/stackablectl.nu

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/stackablectl/src/cmds/demo.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,11 @@ to specify operator versions."
108108
#[command(flatten)]
109109
namespaces: CommonNamespaceArgs,
110110

111-
/// TODO
112-
#[arg(long, long_help = "TODO")]
111+
/// Indicates whether charts should be pulled from the OCI registry rather than the Nexus repositories
112+
#[arg(
113+
long,
114+
long_help = "Pull the charts from the OCI registry rather than the Nexus repositories."
115+
)]
113116
use_registry: bool,
114117
}
115118

rust/stackablectl/src/cmds/operator.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,11 @@ Use \"stackablectl operator describe <OPERATOR>\" to get available versions for
103103
#[command(flatten)]
104104
local_cluster: CommonClusterArgs,
105105

106-
/// TODO
107-
#[arg(long, long_help = "TODO")]
106+
/// Indicates whether charts should be pulled from the OCI registry rather than the Nexus repositories
107+
#[arg(
108+
long,
109+
long_help = "Pull the charts from the OCI registry rather than the Nexus repositories."
110+
)]
108111
use_registry: bool,
109112
}
110113

rust/stackablectl/src/cmds/release.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,11 @@ pub struct ReleaseInstallArgs {
8383
#[command(flatten)]
8484
local_cluster: CommonClusterArgs,
8585

86-
/// TODO
87-
#[arg(long, long_help = "TODO")]
86+
/// Indicates whether charts should be pulled from the OCI registry rather than the Nexus repositories
87+
#[arg(
88+
long,
89+
long_help = "Pull the charts from the OCI registry rather than the Nexus repositories."
90+
)]
8891
use_registry: bool,
8992
}
9093

rust/stackablectl/src/cmds/stack.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,11 @@ Use \"stackablectl stack describe <STACK>\" to list available parameters for eac
104104
#[command(flatten)]
105105
namespaces: CommonNamespaceArgs,
106106

107-
/// TODO
108-
#[arg(long, long_help = "TODO")]
107+
/// Indicates whether charts should be pulled from the OCI registry rather than the Nexus repositories
108+
#[arg(
109+
long,
110+
long_help = "Pull the charts from the OCI registry rather than the Nexus repositories."
111+
)]
109112
use_registry: bool,
110113
}
111114

0 commit comments

Comments
 (0)