Daniel Goldman
Daniel Goldman
> Actually, now that I think of it, why aren't these just regular `dependencies`, where we detect that the dependency is a publishable thing, and therefore know to publish? I...
> I wonder if we don't, due to two key downsides of putting them all in the same directory Both of these are valid. There's also a parameter "generate_exe" which...
do we want to make all `TemplatedExternalTools` exportable? We could extend `Subsystem.rules` and add the `UnionRule` there
seems Pants is only identifying changes if made to the `HelmChartMetaSourceField` (the "chart.yaml" itself) and not to the `HelmChartSourcesField`. I think this is an interaction of things that get a...
Confirming, we get `tgt[SourcesField]`. Since the chart itself is a `SourcesField`, this getitem gives just the chart. https://github.com/pantsbuild/pants/blob/8fa130ef917979bf30d832092b3bf17953453c9f/src/python/pants/backend/project_info/peek.py#L316 I remember that we had a similar problem with the Terraform backend,...
I think this fits in with the idea that there are so many other parts of managing a deployment than really fit with pants's verbs. For example, with Terraform I...
Can you show the BUILD file too? Pants assembles the context for the Docker build itself, [the doc here](https://www.pantsbuild.org/2.22/docs/docker#adding-dependencies-to-your-docker_image-targets) explains in more detail. There are 2 way around this: 1....
I'm not sure, I didn't need to do anything for our selfhosted runner, but we don't use an action to setup docker. (you might need to set the DOCKER_HOST envvar...
I think it makes sense to use a different arg: - they would be implemented differently (not actually resolves) - they would be used differently (invoked, instead of `source dist/.../activate`)...
Pants can currently build docker images in parallel if multiple docker target are specified (ex `pants package :docker0 :docker1` or `pants package ::`) `docker buildx bake` looks to be a...