We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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]
Interestingly, when this ran, it actually deployed prometheus, into that namespace.
The text was updated successfully, but these errors were encountered:
I think this is because the actual env var passed to drone-helm container by Drone is PLUGIN_DRY-RUN, not PLUGIN_DRY_RUN.
PLUGIN_DRY-RUN
PLUGIN_DRY_RUN
Sorry, something went wrong.
Have you tried this?
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]
We may need to upgrade the docs here then: https://github.com/ipedrazas/drone-helm/blob/master/DOCS.md#advanced-customisations-and-debugging
No branches or pull requests
I have a simple pipeline:
Interestingly, when this ran, it actually deployed prometheus, into that namespace.
The text was updated successfully, but these errors were encountered: