hi all, I’m having an issue with flow registration...
# ask-community
l
hi all, I’m having an issue with flow registration that I am not sure how to debug. I’ve deployed a new version of my flow, but it seems the new image is not being used I see during my registration below:
Copy code
prefect register --project "<PROJECT_NAME>" --json flow.json --label dev --force
Collecting flows...
Processing 'flow.json':
  Registering '<FLOW_NAME>'... Done
  └── ID: <ID>
  └── Version: 3
But when I run my flow, some of the logic that changed, specifically an output file naming convention is not being used. I’m not sure if this has something to do with an image pull policy in my agent helm chart, or something that I am missing at registration time
k
I think you need to change your
imagePullPolicy
to always like the last example here
👍 1