Can I use an `Output<str>` in a `pulumi_kube...
# general
c
Can I use an
Output<str>
in a
pulumi_kubernetes.yaml.ConfigFile
transformation - and if so how? --- Context: I'm trying to update the image name of a container with the freshly built image (with unique pinned ID) using
pulumi_docker
however I keep running into the issue of the transformation (which attempts to just set
spec.template.spec.containers.0.image
= image_name (output from
docker.Image().image_name
) Am I just being foolish for trying to use the yaml files (rather than re-importing them in python?)