Commit 56125b94 authored by Matt Butcher's avatar Matt Butcher

Merge pull request #454 from technosophos/fix/helm-deployment-delete-rm

fix(cli): change deployment delete to remove
parents f7e66da9 b3315a3f
...@@ -51,8 +51,8 @@ func deploymentCommands() cli.Command { ...@@ -51,8 +51,8 @@ func deploymentCommands() cli.Command {
ArgsUsage: "DEPLOYMENT", ArgsUsage: "DEPLOYMENT",
}, },
{ {
Name: "delete", Name: "remove",
Aliases: []string{"del"}, Aliases: []string{"rm"},
Usage: "Deletes the named deployment(s).", Usage: "Deletes the named deployment(s).",
ArgsUsage: "DEPLOYMENT [DEPLOYMENT [...]]", ArgsUsage: "DEPLOYMENT [DEPLOYMENT [...]]",
Action: func(c *cli.Context) { run(c, deleteDeployment) }, Action: func(c *cli.Context) { run(c, deleteDeployment) },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment