Gcloud App Deploy Error: 'QUOTA_FOR_INSTANCES'

Gcloud App Deploy Error: 'QUOTA_FOR_INSTANCES'

我能够将 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/..."

到目前为止我尝试了什么:

还有我的 app.yaml

runtime: nodejs
env: flex
skip_files:
  - ^node_modules/.*$

编辑:

我通过更新 app.yaml 文件解决了这个问题:

runtime: nodejs
env: standard
skip_files:
  - ^node_modules/.*$

Google App Engine 产品团队已经意识到这个问题,目前正在调查中。

有一个 Public Issue Tracker,您可以 'star' 并关注,以便您可以收到关于此的任何进一步更新。此外,您可能会看到一些已发布的变通办法,如果同意您的偏好,可以临时执行这些变通办法。

截至目前,还没有解决方案的预计到达时间,但一旦团队在该问题上取得进展,就会提供更新。

希望这些信息对您有所帮助。