managed-vm

My java App Engine Managed VMs build doesn't deploy after 4/14/2015 update

£可爱£侵袭症+ 提交于 2019-12-01 00:17:48
My java App Engine Managed VMs build doesn't deploy any more using gcloud preview app deploy target/myapp-SNAPSHOT I get this: ERROR: Found no valid App Engine configuration files in directory The usage of gcloud preview app deploy changed in our gcloud 2015.04.14 release, you now have to specify the .yaml file for your module as well as --project projectID . The documentation should be updated shortly. For Java, we've released an updated maven plugin. In your pom.xml, please add the following: <plugin> <groupId>com.google.appengine</groupId> <artifactId>gcloud-maven-plugin</artifactId>

How to fix “`The --custom_entrypoint flag must be set for custom runtimes`”?

坚强是说给别人听的谎言 提交于 2019-11-30 20:18:22
I get this error on appengine when I run gcloud preview app run app.yaml : The --custom_entrypoint flag must be set for custom runtimes My app.yaml looks like: version: 0-1-1 runtime: custom vm: true api_version: 1 manual_scaling: instances: 1 handlers: - url: .* script: dynamic My dockerfile is just: FROM google/nodejs-runtime I reinstalled gcloud to get the latest version, did something change in the yaml config for managed VMs? This makes it impossible for me to test my app. Jeff Deskins There appears to be a bug or setup issue with Google Cloud SDK version 0.9.67 causing this error. As a

How to fix “`The --custom_entrypoint flag must be set for custom runtimes`”?

核能气质少年 提交于 2019-11-30 03:47:38
问题 I get this error on appengine when I run gcloud preview app run app.yaml : The --custom_entrypoint flag must be set for custom runtimes My app.yaml looks like: version: 0-1-1 runtime: custom vm: true api_version: 1 manual_scaling: instances: 1 handlers: - url: .* script: dynamic My dockerfile is just: FROM google/nodejs-runtime I reinstalled gcloud to get the latest version, did something change in the yaml config for managed VMs? This makes it impossible for me to test my app. 回答1: There