Google Cloud App Engine 灵活配额错误
Google Cloud App Engine Flexbile quota error
ERROR: (gcloud.app.deploy) INVALID_ARGUMENT: The following quotas were exceeded: CPUS (quota:
0, used: 0 + needed: 4).
尝试在 App Engine 灵活环境中使用 gcloud 在新的 google 云项目中部署 nodejs 应用程序。
runtime: nodejs
env: flex
resources:
cpu: 2
memory_gb: 3.5
disk_size_gb: 20
network:
name: default
env_variables:
NODE_ENV: production
出于某种原因,我无法在 App Engine 柔性环境中成功部署。
如果您正在免费试用,这是一个已知问题或该地区(亚洲南部)的缺货问题。以下是我的建议:
- 尝试在 app.yaml 中添加并部署:
automatic_scaling:
min_num_instances: 1
max_num_instances: 7
ERROR: (gcloud.app.deploy) INVALID_ARGUMENT: The following quotas were exceeded: CPUS (quota:
0, used: 0 + needed: 4).
尝试在 App Engine 灵活环境中使用 gcloud 在新的 google 云项目中部署 nodejs 应用程序。
runtime: nodejs
env: flex
resources:
cpu: 2
memory_gb: 3.5
disk_size_gb: 20
network:
name: default
env_variables:
NODE_ENV: production
出于某种原因,我无法在 App Engine 柔性环境中成功部署。
如果您正在免费试用,这是一个已知问题或该地区(亚洲南部)的缺货问题。以下是我的建议:
- 尝试在 app.yaml 中添加并部署:
automatic_scaling:
min_num_instances: 1
max_num_instances: 7