无法在 google 云上部署服务
Can't deploy service on google cloud
我正在尝试使用 google 云终端发布我的烧瓶 api。
我在 google 云终端上输入“gcloud app deploy”一段时间后出现此错误
{\"ResourceType\":\"compute.beta.regionAutoscaler\",
\"ResourceErrorCode\":\"403\",
\"ResourceErrorMessage\":{\"code\":403,
\"message\":\"The caller does not have permission\",
\"status\":\"PERMISSION_DENIED\",
\"statusMessage\":\"Forbidden\",
\"requestPath\":\"https://compute.googleapis.com/compute/beta/projects/<MYAPPNAME>/regions/europe-west1/autoscalers\",
\"httpMethod\":\"POST\"}
我自己授予了这些权限:
我更改了app.yaml并添加了
automatic_scaling:
min_num_instances: 1
max_num_instances: 7
给它。它解决了问题!
我正在尝试使用 google 云终端发布我的烧瓶 api。
我在 google 云终端上输入“gcloud app deploy”一段时间后出现此错误
{\"ResourceType\":\"compute.beta.regionAutoscaler\",
\"ResourceErrorCode\":\"403\",
\"ResourceErrorMessage\":{\"code\":403,
\"message\":\"The caller does not have permission\",
\"status\":\"PERMISSION_DENIED\",
\"statusMessage\":\"Forbidden\",
\"requestPath\":\"https://compute.googleapis.com/compute/beta/projects/<MYAPPNAME>/regions/europe-west1/autoscalers\",
\"httpMethod\":\"POST\"}
我自己授予了这些权限:
我更改了app.yaml并添加了
automatic_scaling:
min_num_instances: 1
max_num_instances: 7
给它。它解决了问题!