Merge pull request #2431 from masters-of-cats/plugins-list-subcommand
Introduce plugins/list subcommand
This commit is contained in:
		| @@ -37,6 +37,15 @@ var Command = cli.Command{ | |||||||
| 	Name:    "plugins", | 	Name:    "plugins", | ||||||
| 	Aliases: []string{"plugin"}, | 	Aliases: []string{"plugin"}, | ||||||
| 	Usage:   "provides information about containerd plugins", | 	Usage:   "provides information about containerd plugins", | ||||||
|  | 	Subcommands: []cli.Command{ | ||||||
|  | 		listCommand, | ||||||
|  | 	}, | ||||||
|  | } | ||||||
|  |  | ||||||
|  | var listCommand = cli.Command{ | ||||||
|  | 	Name:    "list", | ||||||
|  | 	Aliases: []string{"ls"}, | ||||||
|  | 	Usage:   "lists containerd plugins", | ||||||
| 	Flags: []cli.Flag{ | 	Flags: []cli.Flag{ | ||||||
| 		cli.BoolFlag{ | 		cli.BoolFlag{ | ||||||
| 			Name:  "quiet,q", | 			Name:  "quiet,q", | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Kenfe-Mickaël Laventure
					Kenfe-Mickaël Laventure