GoogleCloudPlatform / appengine-maven-plugin

Automatically exported from code.google.com/p/appengine-maven-plugin
Apache License 2.0
19 stars 21 forks source link

Spring Boot Deploy #85

Open wesoos opened 7 years ago

wesoos commented 7 years ago

Hello, I am trying to deploy a spring boot application to the app engine, but it's not deploying. It gets to a certain point then it hangs and then fails. It works fine in my local development environment with a jetty server, and we actually have it running in production, but we are looking at migrating everything over to google. I don't see anything in the logs to help me out, just this error: "GCLOUD: ERROR: (gcloud.app.deploy) Error Response: [9]".

My app.yaml is as follows:

runtime: java
env: flex
manual_scaling:
   instances: 1

runtime_config:
   jdk: openjdk8
   server: jetty9

resources:
   memory_gb: 2.0

health_check:
   enable_health_check: False
   check_interval_sec: 300
   timeout_sec: 300

vm_health_check:
   enable_health_check: False

handlers:
- url: /.*
   script:

I have a feeling it is timing out with the health checks, which is why I tried to disable them, but it looks like it is ignoring that. I have attached a screenshot of the "App Engine -> Versions -> View". It is not showing the health check stuff. yaml

Any ideas?

wesoos commented 7 years ago

I believe the [enable_health_check: False] is ignored. I deployed a smaller app and as you can see from the screenshot below, it is still doing the health checks...

helthchecks