From 348eb5c6ee1cf7419bff6666d361d66bf9511dd2 Mon Sep 17 00:00:00 2001 From: Michelle Noorali Date: Tue, 1 Mar 2016 17:43:06 -0700 Subject: [PATCH] ref(helm): remove init command. The command is redundant. It was already taken out, but showed up again somehow (probably in the helm/dm merge). Silly command. Removing it again. --- cmd/helm/helm.go | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/cmd/helm/helm.go b/cmd/helm/helm.go index 78055f752..77e5f06ff 100644 --- a/cmd/helm/helm.go +++ b/cmd/helm/helm.go @@ -5,7 +5,6 @@ import ( "github.com/codegangsta/cli" "github.com/kubernetes/deployment-manager/pkg/dm" - "github.com/kubernetes/deployment-manager/pkg/format" ) var version = "0.0.1" @@ -46,23 +45,6 @@ func main() { func cmds() []cli.Command { return []cli.Command{ - { - Name: "init", - Usage: "Initialize the client and install DM on Kubernetes.", - Description: ``, - Flags: []cli.Flag{ - cli.BoolFlag{ - Name: "dry-run", - Usage: "Show what would be installed, but don't install anything.", - }, - }, - Action: func(c *cli.Context) { - if err := install(c.Bool("dry-run")); err != nil { - format.Err("%s (Run 'helm doctor' for more information)", err) - os.Exit(1) - } - }, - }, { Name: "search", },