quaint-telephone-89068
02/24/2023, 8:10 PMdocker_image(name='tmp-example')
helm_deployment(dependencies=["src/chart"],
sources=["common-values.yaml"],
values={"image": "src/docker:tmp-example"})
$ ./pants experimental-deploy src/deployment:deployment -- --debug | grep image
...
# Uses the `image` value entry from the deployment inputs
image: corp.registry.example/tmp-example:localdev
But
docker_image(name='tmp-example')
helm_deployment(dependencies=["src/chart"],
sources=["common-values.yaml"],
values={"image": ":tmp-example"})
Gives
$ ./pants experimental-deploy src/deployment:deployment -- --debug | grep image
# Uses the `image` value entry from the deployment inputs
image: :tmp-example
Describe the solution you'd like
I'd like the :foo target syntax to work.
Describe alternatives you've considered
Always using the fully qualified targets.
Version: 2.16.0.dev7
pantsbuild/pants