fix(cli): remove unused 'helm dep' subcommands

pull/515/head
Matt Butcher 9 years ago
parent ccb730678f
commit 274eb198bf

@ -60,11 +60,6 @@ func deploymentCommands() cli.Command {
Usage: "Perform deployment-centered operations.", Usage: "Perform deployment-centered operations.",
Description: deploymentDesc, Description: deploymentDesc,
Subcommands: []cli.Command{ Subcommands: []cli.Command{
{
Name: "config",
Usage: "Dump the configuration file for this deployment.",
ArgsUsage: "DEPLOYMENT",
},
{ {
Name: "remove", Name: "remove",
Aliases: []string{"rm"}, Aliases: []string{"rm"},
@ -78,11 +73,6 @@ func deploymentCommands() cli.Command {
ArgsUsage: "DEPLOYMENT", ArgsUsage: "DEPLOYMENT",
Action: func(c *cli.Context) { run(c, describeDeployment) }, Action: func(c *cli.Context) { run(c, describeDeployment) },
}, },
{
Name: "manifest",
Usage: "Dump the Kubernetes manifest file for this deployment.",
ArgsUsage: "DEPLOYMENT",
},
{ {
Name: "show", Name: "show",
Aliases: []string{"info"}, Aliases: []string{"info"},

Loading…
Cancel
Save