Skip to content

maorfr/helm-tiller-info

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Helm Tiller information Plugin

This is a Helm plugin which prints information about Tiller.

Usage

Print information about Tiller

$ helm tiller-info [flags]

Flags

      --tiller-namespace string   namespace of Tiller (default "kube-system")

Example

$ helm tiller-info
Tiller storage: secrets
Tiller default deployment namespace: default

Install

$ 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.

Developer (From Source) Install

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