├── .drone.yml ├── .gitignore ├── DOCS.md ├── Dockerfile ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── README.md ├── charts └── plugintest │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── ingress.yaml │ └── service.yaml │ └── values.yaml ├── glide.lock ├── glide.yaml ├── kubeconfig ├── main.go └── plugin ├── plugin.go └── plugin_test.go /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/.drone.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/.gitignore -------------------------------------------------------------------------------- /DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/DOCS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/README.md -------------------------------------------------------------------------------- /charts/plugintest/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/charts/plugintest/.helmignore -------------------------------------------------------------------------------- /charts/plugintest/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/charts/plugintest/Chart.yaml -------------------------------------------------------------------------------- /charts/plugintest/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/charts/plugintest/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/plugintest/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/charts/plugintest/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/plugintest/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/charts/plugintest/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/plugintest/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/charts/plugintest/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/plugintest/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/charts/plugintest/templates/service.yaml -------------------------------------------------------------------------------- /charts/plugintest/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/charts/plugintest/values.yaml -------------------------------------------------------------------------------- /glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/glide.lock -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/glide.yaml -------------------------------------------------------------------------------- /kubeconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/kubeconfig -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/main.go -------------------------------------------------------------------------------- /plugin/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/plugin/plugin.go -------------------------------------------------------------------------------- /plugin/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedrazas/drone-helm/HEAD/plugin/plugin_test.go --------------------------------------------------------------------------------