ref(init): add desc, rm cmd/tiller/Dockerfile

pull/613/head
Michelle Noorali 10 years ago
parent 306aca6aec
commit 40cbc9007c

@ -9,6 +9,11 @@ import (
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )
const longDesc = `
This command installs Tiller (the helm server side component) onto your
Kubernetes Cluster and sets up local configuration in $HELM_HOME (default: ~/.helm/)
`
var tillerImg string var tillerImg string
func init() { func init() {
@ -19,7 +24,7 @@ func init() {
var initCmd = &cobra.Command{ var initCmd = &cobra.Command{
Use: "init", Use: "init",
Short: "Initialize Helm on both client and server.", Short: "Initialize Helm on both client and server.",
Long: `Add long help here`, Long: longDesc,
RunE: RunInit, RunE: RunInit,
} }

@ -1,3 +0,0 @@
.dockerignore
Dockerfile
Makefile

@ -1,5 +0,0 @@
FROM ubuntu:14.04
ADD . /
CMD ["/tiller"]
Loading…
Cancel
Save