├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── example-profiles └── dev-team │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── _helpers.tpl │ ├── role-binding.yaml │ └── role-tiller.yaml │ └── values.yaml ├── glide.lock ├── glide.yaml ├── install-binary.sh ├── main.go └── plugin.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelleN/helm-tiller-rbac/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelleN/helm-tiller-rbac/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelleN/helm-tiller-rbac/HEAD/README.md -------------------------------------------------------------------------------- /example-profiles/dev-team/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelleN/helm-tiller-rbac/HEAD/example-profiles/dev-team/.helmignore -------------------------------------------------------------------------------- /example-profiles/dev-team/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelleN/helm-tiller-rbac/HEAD/example-profiles/dev-team/Chart.yaml -------------------------------------------------------------------------------- /example-profiles/dev-team/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelleN/helm-tiller-rbac/HEAD/example-profiles/dev-team/templates/_helpers.tpl -------------------------------------------------------------------------------- /example-profiles/dev-team/templates/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelleN/helm-tiller-rbac/HEAD/example-profiles/dev-team/templates/role-binding.yaml -------------------------------------------------------------------------------- /example-profiles/dev-team/templates/role-tiller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelleN/helm-tiller-rbac/HEAD/example-profiles/dev-team/templates/role-tiller.yaml -------------------------------------------------------------------------------- /example-profiles/dev-team/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelleN/helm-tiller-rbac/HEAD/example-profiles/dev-team/values.yaml -------------------------------------------------------------------------------- /glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelleN/helm-tiller-rbac/HEAD/glide.lock -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelleN/helm-tiller-rbac/HEAD/glide.yaml -------------------------------------------------------------------------------- /install-binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelleN/helm-tiller-rbac/HEAD/install-binary.sh -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelleN/helm-tiller-rbac/HEAD/main.go -------------------------------------------------------------------------------- /plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelleN/helm-tiller-rbac/HEAD/plugin.yaml --------------------------------------------------------------------------------