├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── glide.lock ├── glide.yaml ├── install-binary.sh ├── main.go └── plugin.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | _scratch 2 | tpl 3 | vendor/ 4 | _dist/ 5 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/helm-template/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/helm-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/helm-template/HEAD/README.md -------------------------------------------------------------------------------- /glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/helm-template/HEAD/glide.lock -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/helm-template/HEAD/glide.yaml -------------------------------------------------------------------------------- /install-binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/helm-template/HEAD/install-binary.sh -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/helm-template/HEAD/main.go -------------------------------------------------------------------------------- /plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/helm-template/HEAD/plugin.yaml --------------------------------------------------------------------------------