Skip to content

Commit 3cf3881

Browse files
Introduce plugins/list subcommand
`Ctr` interface follows the pattern `ctr <command> <subcommand>` except for the `plugins` command which does not have subcommands. This feels unnatural to certain users and they would expect that they can list containerd plugins via `ctr plugins list`. This commit implements their expectation so that `plugins` becomes a command "group" and its `list` subcommand actually lists the plugins. Signed-off-by: Danail Branekov <[email protected]>
1 parent a044b04 commit 3cf3881

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

cmd/ctr/commands/plugins/plugins.go

+9
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,15 @@ var Command = cli.Command{
3737
Name: "plugins",
3838
Aliases: []string{"plugin"},
3939
Usage: "provides information about containerd plugins",
40+
Subcommands: []cli.Command{
41+
listCommand,
42+
},
43+
}
44+
45+
var listCommand = cli.Command{
46+
Name: "list",
47+
Aliases: []string{"ls"},
48+
Usage: "lists containerd plugins",
4049
Flags: []cli.Flag{
4150
cli.BoolFlag{
4251
Name: "quiet,q",

0 commit comments

Comments
 (0)