Development Tips and Tricks
Test Template Rendering
Run the following. Instead of it installing the chart it will render the template and display the output
helm install --debug --dry-run <release-name> <path-to-chart-dir>
To test with an overriding value
helm install <release-name> <path-to-chart-dir> --dry-run --debug --set k=v
Deployments
- List releases:
helm list
- Get the manifest for a release:
helm get manifest <release-name> [flags]