Is there a way to view the docker image that was u...
# ask-metaflow
c
Is there a way to view the docker image that was used to execute a specific run (using k8s)?
a
great question! there isn't a straightforward way for metaflow to record that information. If you have the pod object in the kubernetes cluster, that will include the image used for running the container.
c
ok thanks. Yes, that's what I would do for a running pod but they get regularly pruned/deleted and my question was more intended for analyzing/reproducing an old run. It sounds like, in the future, we should just use run tags to add the image SHA to every run.
a
that would be better. IIRC there isn't a way to get access to the docker image sha from within the running container
let me run a quick experiment and get back to you on this in a bit - adding images to the task metadat has come up before as well
c
thank you 🙏