hi! is there a way to get the image running the jo...
# prefect-community
a
hi! is there a way to get the image running the job in kubernetes? so after a flow is triggered, can I have access to the image name running the container?
k
The only way I can see this working is using the GraphQL API to pull it out of the RunConfig registered with the Flow
👍 1
a
I'm even trying querying kubernetes api it self, not success yet
mmm ok, that might be a way
k
I think it would be easy to query the GraphQL API
Copy code
query {
  flow {
    name
    run_config
  }
}
That run_config will hold it if you registered with it
a
it worked amazingly well btw 👍
👍 1