From 274eb198bfc4d4fb7cc994d7602f6ee8576d3055 Mon Sep 17 00:00:00 2001 From: Matt Butcher Date: Wed, 30 Mar 2016 10:58:58 -0600 Subject: [PATCH] fix(cli): remove unused 'helm dep' subcommands --- cmd/helm/deployment.go | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/cmd/helm/deployment.go b/cmd/helm/deployment.go index 95f0a0142..ac642402d 100644 --- a/cmd/helm/deployment.go +++ b/cmd/helm/deployment.go @@ -60,11 +60,6 @@ func deploymentCommands() cli.Command { Usage: "Perform deployment-centered operations.", Description: deploymentDesc, Subcommands: []cli.Command{ - { - Name: "config", - Usage: "Dump the configuration file for this deployment.", - ArgsUsage: "DEPLOYMENT", - }, { Name: "remove", Aliases: []string{"rm"}, @@ -78,11 +73,6 @@ func deploymentCommands() cli.Command { ArgsUsage: "DEPLOYMENT", Action: func(c *cli.Context) { run(c, describeDeployment) }, }, - { - Name: "manifest", - Usage: "Dump the Kubernetes manifest file for this deployment.", - ArgsUsage: "DEPLOYMENT", - }, { Name: "show", Aliases: []string{"info"},