drone-helm icon indicating copy to clipboard operation
drone-helm copied to clipboard

Helm (Kubernetes) plugin for drone.io

Results 20 drone-helm issues
Sort by recently updated
recently updated
newest added

Hi, this pull request bumps Helm to 2.17.0 and kubectl to 1.19.0. The Helm upgrade is particularly important since 2.14.1 still uses API that was deprecate in kubernetes 1.15 (and...

how to setting the username and password ?

Hey, are there already any plans to support Helm v3? Maybe as a new plugin (which prevents breaking existing deployments). Thanks for your awesome work!

After using the plugin this morning, I've found that if I add braces around my variables (as seen in the docs), then variable substitution does not work correctly (at least...

I want to : helm --stable-repo-url http://192.168.3.3 ... reason: stable-repo-url kubernetes-charts.storage.googleapis.com not connection, in china. ======= drone log ========= ...... Creating /root/.helm Creating /root/.helm/repository Creating /root/.helm/repository/cache Creating /root/.helm/repository/local Creating /root/.helm/plugins...

Something I've found incredibly useful for secret management is https://github.com/futuresimple/helm-secrets. The gist is its a wrapper + plugin for Helm that delegates secret enc/dec to https://github.com/mozilla/sops. In general I think...

Im getting this error message and I can't figure out why. As far as I can tell, the API Server is specified in my pipeline: ```yaml deploy_helm: image: quay.io/ipedrazas/drone-helm api_server:...

I have a simple pipeline: ``` pipeline: helm_deploy: image: quay.io/ipedrazas/drone-helm skip_tls_verify: true chart: stable/prometheus update_dependencies: false release: prometheus namespace: production-prometheus dry-run: true secrets: [ api_server, kubernetes_token ] when: branch: [master]...

Hello! First off amazing job, this plugin is excellent and solves so many problems for me. I'm trying to use a more customized release name than just the branch or...