Is there support for helmfiles ? <https://github.c...
# general
c
Is there support for helmfiles ? https://github.com/helmfile/helmfile I would like to update the helmfile with the helm chart(s) generated during the pants package. Alternatively, how would I go about adding this ?
c
Pants doesn't have support for helmfile. You could get something together using adhoc_tool or run_shell_command . If you wanted to integrate more with Pants, you could write a plugin. You could tie into the
experimental-deploy
goal. We don't have documentation on implementing that (it's still experimental), but feel free to ask in the #C01CQHVDMMW channel.
c
Thanks @careful-address-89803, I'll explore your suggestions. I've written a couple of simple plugins to derive python package versions and docker image tags from git tags. So will see what I can do with the plugin approach.