Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Red Hat OpenShift: cannot build/deploy node app because "Output image could not be resolved"

I have linked my GitHub repo to an OpenShift app, added the main property and start script to the package.json, but under Builds, it says "Status: Output image could not be resolved. Started: not started"

like image 568
sdfsdf Avatar asked Jun 18 '18 19:06

sdfsdf


1 Answers

I was running into the exact same error message. It turns out I had all my OpenShift resources in place except the ImageStream to store the build output images into. Like @pixie recommended, try to run oc create imagestream <imagestream name from build config> and see if it helps with your build.

like image 162
Byob Avatar answered Oct 17 '22 16:10

Byob