# Helm (Kubernetes) plugin for drone.io This plugin allows to deploy a [Helm](https://github.com/kubernetes/helm) chart into a [Kubernetes](https://github.com/kubernetes/kubernetes) cluster. For example, this configuration will deploy Jenkins using the [stable/jenkins chart](https://github.com/kubernetes/charts/tree/master/stable/jenkins) pipeline: deploy: image: ipedrazas/drone-helm command: - "install" - "--name" - "my-release" - "stable/jenkins" - "--debug", - "--dry-run" api_server: "http://my_api_server" kubernetes_token: "secret token" skip_tls_verify: "true" If you don't know where to get a token from, you can execute the following command: kubectl exec POD_NAME -- cat /var/run/secrets/kubernetes.io/serviceaccount/token For example, in a cluster where there's a pod called `nginx-1212390922-fdz1x` we coudl do: kubectl exec nginx-1212390922-fdz1x -- cat /var/run/secrets/kubernetes.io/serviceaccount/token To test the plugin, you can run `minikube` and just run the docker image as follows: docker run -i ipedrazas/drone-helm /bin/drone-helm <