Gcloud应用程序部署错误 – 计算机API禁用的必需Alpha Access

我是Google App Engine的新手,我的Django应用程序的部署出现了一个非常奇怪的错误,这似乎与缺乏Alpha Access权限有关。 错误说:

Updating service [default]...failed. ERROR: (gcloud.app.deploy) Error Response: [13] Deployment Manager operation failed, name: operation-1480541820504-5428b814947c1-dfa6ed37-d2b5ecf3, error: [{"code":"RESOURCE_ERROR","location":"/deployments/aef-default-20161130t213509/resources/aef-default-20161130t213509-00","message":"Unexpected response from resource of type compute.alpha.regionInstanceGroupManager: 403 {\"code\":403,\"errors\":[{\"domain\":\"global\",\"message\":\"Required 'Alpha Access' permission for 'Compute API'\",\"reason\":\"forbidden\"}],\"message\":\"Required 'Alpha Access' permission for 'Compute API'\",\"statusMessage\":\"Forbidden\",\"requestPath\":\"https://www.googleapis.com/compute/alpha/projects/elumin-dev-us/regions/us-central1/instanceGroupManagers\"}"} 

任何人都可以摆脱任何光? 我已经尝试了两个不同的项目,并得到完全相同的错误。 上传结果是一个正在运行的应用程序版本,当访问时会引发500个服务器错误。

据我所知,应用程序没有什么特别的。 它不是试图访问除本身以外的任何资源。 它在本地主机上运行良好,甚至连接到云数据库实例。 我的app.yaml文件如下:

 # [START runtime] runtime: python env: flex entrypoint: gunicorn -b :$PORT elumin.wsgi runtime_config: python_version: 3 # [END runtime] 

这与试图使用“env:flex”有关。 这现在是testing版 ,所以不应该再发生了。