如何为欧洲服务器配置Google Cloud Platform?

时间:2016-12-22 15:52:17

标签: google-app-engine spring-boot

当我在google云平台教程中部署一个spring boot java web app https://github.com/GoogleCloudPlatform/getting-started-java/tree/master/helloworld-springboot

我遇到了以下错误:

INVALID_ARGUMENT: Flexible Environment deployments are not supported in the apps region 'europe-west'.

有没有办法不使用灵活环境部署(或使其工作)。我甚至找不到yaml文件的其他可能值

runtime: java
env: flex
runtime_config:  # Optional
  jdk: openjdk8
handlers:
- url: /.*
  script: this field is required, but ignored
  secure: always  # Require HTTPS
manual_scaling:
  instances: 1

2 个答案:

答案 0 :(得分:1)

来自App Engine Locations

  

注意: 欧洲西部区域仅支持standard environment。您必须选择其他区域才能使用   flexible environment

所以你有2个选择:

  • 使用备用GAE提供区域,我选择 us-east1
  • 看看您是否可以将应用转换为使用标准环境

答案 1 :(得分:0)

如果您想将您的地区更改为美国西部,请运行:

gcloud config set compute/region us-west1