Hello,
I build an image locally to be used by my task, and while registering my workflows I specified my image without the registery,
$ pyflyte register workflows/ -p flytesnacks -d development -v v1 -i "image:tag"
also in my code, at the task decorator, I specified the
image_pull_policy="Never"
. It was registered successfully, but when I tried executing the workflow from the flyte UI, the pod failed due to image not found. When further examined, local iamges are not directly visible to the nodes or pods, also I heard about the
flyte's docker registery
. How can I use this to make my local docker image to be available to my node to be pulled. How to push docker images to flyte's local docker registry.