This is a Helm plugin which prints information about Tiller.
Print information about Tiller
$ helm tiller-info [flags]
--tiller-namespace string namespace of Tiller (default "kube-system")
$ helm tiller-info
Tiller storage: secrets
Tiller default deployment namespace: default
$ helm plugin install https://github.com/maorfr/helm-tiller-info
The above will fetch the latest binary release of helm tiller-info
and install it.
If you would like to handle the build yourself, instead of fetching a binary, this is how recommend doing it.
First, set up your environment:
- You need to have Go installed. Make sure to set
$GOPATH
- If you don't have Dep installed, this will install it into
$GOPATH/bin
for you.
Clone this repo into your $GOPATH
. You can use go get -d github.com/maorfr/helm-tiller-info
for that.
$ cd $GOPATH/src/github.com/maorfr/helm-tiller-info
$ make bootstrap build
$ SKIP_BIN_INSTALL=1 helm plugin install $GOPATH/src/github.com/maorfr/helm-tiller-info