<#18359 support relative docker_image target synt...
# github-notifications
q
#18359 support relative docker_image target syntax for helm interpolated images values Issue created by cburroughs Is your feature request related to a problem? Please describe.
Copy code
docker_image(name='tmp-example')

helm_deployment(dependencies=["src/chart"],
                sources=["common-values.yaml"],
                values={"image": "src/docker:tmp-example"})
Copy code
$ ./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
Copy code
docker_image(name='tmp-example')

helm_deployment(dependencies=["src/chart"],
                sources=["common-values.yaml"],
                values={"image": ":tmp-example"})
Gives
Copy code
$ ./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