datreeio / helm-datree

A Helm plugin to validate charts against the Datree's CLI tool
https://hub.datree.io/integrations
MIT License
113 stars 26 forks source link

Passing in values file with -f flag #16

Closed mahgo closed 3 years ago

mahgo commented 3 years ago

Describe the solution you'd like Is it currently possible to pass in values files with a -f flag? This is something I'd like to be able to do.

eyarz commented 3 years ago

If you need to pass helm arguments to your template, you will need to add -- before them:

helm datree test [CHART_DIRECTORY] -- --values values.yaml
mahgo commented 3 years ago

Thanks!