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

This commit is contained in:
Michelle Noorali 2016-04-14 14:55:05 -06:00
parent 306aca6aec
commit 40cbc9007c
3 changed files with 6 additions and 9 deletions

View File

@ -9,6 +9,11 @@ import (
"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
func init() {
@ -19,7 +24,7 @@ func init() {
var initCmd = &cobra.Command{
Use: "init",
Short: "Initialize Helm on both client and server.",
Long: `Add long help here`,
Long: longDesc,
RunE: RunInit,
}

View File

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

View File

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