2019-11-21 19:35:50 +00:00
# Drone plugin for Helm 3
2019-12-19 22:53:53 +00:00
This plugin provides an interface between [Drone ](https://drone.io/ ) and [Helm 3 ](https://github.com/kubernetes/helm ):
* Lint your charts
* Deploy your service
* Delete your service
The plugin is inpsired by [drone-helm ](https://github.com/ipedrazas/drone-helm ), which fills the same role for Helm 2. It provides a comparable feature-set and the configuration settings are backwards-compatible.
## Example configuration
2019-12-24 22:36:39 +00:00
The examples below give a minimal and sufficient configuration for each use-case. For a full description of each command's settings, see [docs/parameter_reference.md ](docs/parameter_reference.md ).
2019-12-19 22:53:53 +00:00
### Linting
```yaml
steps:
- name: lint
image: pelotech/drone-helm3
settings:
helm_command: lint
chart: ./
```
2019-12-24 23:22:25 +00:00
### Installation
2019-12-19 22:53:53 +00:00
```yaml
steps:
- name: deploy
image: pelotech/drone-helm3
settings:
helm_command: upgrade
chart: ./
release: my-project
environment:
API_SERVER: https://my.kubernetes.installation/clusters/a-1234
KUBERNETES_TOKEN:
from_secret: kubernetes_token
```
2019-12-24 23:22:25 +00:00
### Uninstallation
2019-12-19 22:53:53 +00:00
```yaml
steps:
2019-12-19 23:23:13 +00:00
- name: uninstall
2019-12-19 22:53:53 +00:00
image: pelotech/drone-helm3
settings:
2019-12-19 23:23:13 +00:00
helm_command: uninstall
2019-12-19 22:53:53 +00:00
release: my-project
environment:
API_SERVER: https://my.kubernetes.installation/clusters/a-1234
KUBERNETES_TOKEN:
from_secret: kubernetes_token
```
## Upgrading from drone-helm
2019-12-24 23:25:44 +00:00
drone-helm3 is largely backwards-compatible with drone-helm. There are some known differences:
* `prefix` must be supplied via the `settings` block, not `environment` .
* Several settings no longer have any effect:
* `purge` -- this is the default behavior in Helm 3
* `recreate_pods`
* `tiller_ns`
* `upgrade`
* `canary_image`
* `client_only`
* `stable_repo_url`
Since helm 3 does not require Tiller, we also recommend switching to a service account with less-expansive permissions.
2019-12-31 19:19:56 +00:00
### Contribution
This repo is setup in a way that if you enable a personal drone server to build your fork it will
build and publish your image (makes it easier to test PRs and use the image till the contributions get merged)
* Build local ```DRONE_REPO_OWNER=josmo DRONE_REPO_NAME=drone-ecs drone exec```
* on your server (or cloud.drone.io) just make sure you have DOCKER_USERNAME, DOCKER_PASSWORD, and PLUGIN_REPO set as secrets