Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 openshift 上部署 nodejs 应用程序,但大约一分钟后它失败了,当我检查日志时它停在该行:
---> Building your Node application from source
不记录任何错误。
您的构建需要比默认分配更多的内存。您需要增加构建的内存量。这个问题,如何确认是这个问题,以及如何增加分配的内存在博文中给出:
简而言之,尝试运行:
oc patch bc/shareit -p '{"spec":{"resources":{"limits":{"memory":"1Gi"}}}}'