我能够将node.js项目部署到gcloud中,但是现在我得到了这个error
Flex operation projects/.../regions/.../operations/
error [INTERNAL]: An internal error occurred while processing task /appengine-flex-v1/insert_flex_deployment/flex_create_resources>...: Deployment Manager operation .../operation-...
message: "{\"ResourceType\":\"compute.beta.regionAutoscaler\",\"ResourceErrorCode\":\"403\",\"ResourceErrorMessage\":{\"code\":403,\"errors\":[{\"domain\":\"usageLimits\",\"message\":\"Exceeded limit \'QUOTA_FOR_INSTANCES\' on resource \'...\'. Limit: 8.0\",\"reason\":\"limitExceeded\"}],\"message\":\"Exceeded limit \'QUOTA_FOR_INSTANCES\' on resource \...\'.
Limit: 8.0\",\"statusMessage\":\"Forbidden\",\"requestPath\":\"https://compute.googleapis.com/compute/beta/projects/.../regions/.../autoscalers\",\"httpMethod\":\"POST\"}}" ]
errors: [code: "RESOURCE_ERROR" location: "/deployments/..."到目前为止我尝试过的是:
IAM & Admin中检查IAM & Admin,但是找不到我的服务或者没有超过或没有接近8的限制。我试图扩大一些services,但没有为我工作。这也是我的app.yaml
runtime: nodejs
env: flex
skip_files:
- ^node_modules/.*$编辑:
我通过更新app.yaml文件解决了这个问题:
runtime: nodejs
env: standard
skip_files:
- ^node_modules/.*$发布于 2020-05-27 09:40:43
Google产品团队已经意识到了这个问题,目前正在进行调查。
有一个公共问题跟踪器,你可以‘星’和跟随,以便你可以收到任何进一步的更新。此外,您可能会看到发布的一些解决方案,如果与您的首选项一致,可以临时执行。
到目前为止,还没有ETA的决议,但将提供一个更新,一旦小组在这个问题上取得进展。
我希望这些信息能有所帮助。
https://stackoverflow.com/questions/62024291
复制相似问题