Is there an established pattern for running lint/c...
# general
e
Is there an established pattern for running lint/check type things against outputs of
pants package
? My particular case is that I want to run
kubescore
against my helm charts
b
If you're willing to write a custom plugin, that plugin would be able to trigger the packaging to get the relevant artefacts (i'm not exactly sure how, but plugins have can do "anything", so I imagine there's a way).
c
You can see some of how running
pants package
on a dependency in a plugin works in the implementation of `runtime_package_dependencies` field. But looking at kubescore I think you need to render the template (not just package it)? If that's the case, you could just write a linter that runs
helm template
before running kubescore. If you're using
helm_deployment
targets, you could write a linter targeting those so that you can render the chart with the actual values you'd use