Hi @Mohit Kumar Sharma , to answer you question,
Will this stop the execution on this cron?
, the answer is yes it can. There are two scenarios. One is anytime you restart your app, the platform checks to see if it's using the latest image. If not, the image is pulled and the app is started. If you're using continuous deployment, the platform will trigger the webhook to restart the web app, thereby resulting in checking for the latest image. So yes, it can create an issue for you if you trigger this update during the run of your job.
To better manage this scenario, use more static tagging of your images; say like using a version number instead of commonly used words like :prod
or :latest
. Instead push new images with more controlled tags like a version number. That way, you can control when to use the newer image.
Regards,
Ryan