mobs75 commented on issue #223:
URL: https://github.com/apache/openserverless/issues/223#issuecomment-5368951098

   Good question — I wasn't calling image-save directly, it's a sub-task of 
task build (build -> operator -> image-save). On a fork, the build pushes to 
ghcr.io/<fork>/openserverless-operator, but image-save always tries `docker 
save docker.io/apache/openserverless-operator:<sha>`, which doesn't exist 
locally, hence 'No such image'.
   
   This is actually the same root cause as #221 (OPERATOR_IMG hardcoded via awk 
from the Dockerfile) — same fix unblocks both: retagging the image locally with 
`docker tag ghcr.io/<fork>/openserverless-operator:<sha> 
docker.io/apache/openserverless-operator:<sha>` after the build. Happy to close 
this as a duplicate of #221 if you'd rather track it there — just flagged 
separately since it surfaces as a distinct failure point (image-save vs the 
build step itself).


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to