Questions tagged [google-managed-vm]

Google App Engine Flexible Environments let you run Google App Engine applications on configurable Google Compute Engine VMs. The VM hosting environment offers more flexibility and provides more CPU and memory options.

You can use either standard runtimes or build a custom runtime even with custom operating systems via Dockerfiles to host your application. See the official site for more info.

72 questions
1
vote
1 answer

Failure deploying AppEngine version because of Cloud Storage JSON API enablement

I am trying to deploy to Google AppEngine. (More precisely: Managed VM.) I ran gcloud preview app deploy d:\dev\mytest\yaml-war\app.yaml --version=joshua20160316d --project=mytest-test1. After about 30 minutes, it failed. The error message…
1
vote
0 answers

Managed VM running Go 1.6 having issues maintaining HTTP/2 clients

I'm trying to send requests to Apple's APNS service using their HTTP/2 API, and my service is working fine locally, but once it's on a Managed VM it seems the underlying sockets are dying after a few minutes and the Go HTTP library is unable to…
Blixt
  • 49,547
  • 13
  • 120
  • 153
1
vote
2 answers

Sample project “hello-world” project is showing ERROR while trying to run on App engine

I am trying to deploy the "Hello, World!" for Java on App engine for Managed VMs Java 8 and facing the below listed error while running mvn gcloud:deploy. I did not face any issue while running it on my local machine (mvn jetty:run). Can someone…
1
vote
1 answer

Is it possible to use Local SSD Storage with Google Managed VMs?

We're using Managed VMs, and can currently serve files from the local disk in the VM (which is a standard magnetic HD), as well as serving from Google Cloud Storage (which is also backed by magnetic…
Josh
  • 13
  • 2
1
vote
1 answer

Google App Engine Managed VM with automatic scaling always starts with max number of instances and then scales down

When I deploy a custom managed VM module, it always starts out with the max number of instances before it scales down. Why does this happen and is there a way around this? I suspect it is because cpu utilization is higher than the target during…
user2771609
  • 1,867
  • 1
  • 15
  • 36
1
vote
2 answers

gcloud:deploy failed due to:Unable to copy certificates

Using windows 10, I am trying to use gcloud maven plugin to deploy my VMs managed appeengine project.So after running mvn clean install successfully I run mvn gcloud:deploy ,It fails with the following output on the console. [INFO] Copying…
1
vote
2 answers

AppEngine Managed VMs Cron Job?

So I'm using an AE managed VM to host a website with the nodejs docker image - works great - site works, etc. However, I can't seem to get a AE cron job registered. I added a cron.yaml file right next to my app.yaml file, and I'm not excluding it in…
Christopher
  • 412
  • 3
  • 11
1
vote
1 answer

Connect to Google Cloud Datastore from Google Managed VM (Custom/Java)?

Is it possible to connect to Google Cloud Datastore from Google App Engine Custom Managed VM for Java? I believe it is possible from the Standard Managed VM, but is it possible from the Custom ones?
1
vote
1 answer

Google Managed VM error - custom entry point

I'm running a custom managed VM with PHP, HHVM, nginx, Centos. I'm having issues running it locally and keep getting the ValueError: The --custom_entrypoint flag must be set for custom runtimes issue. This happens if I use 'dev_appserver.py…
1
vote
0 answers

Dockerfile dosen't work on Google managed Virtual Machine

I am building a web-server on Google managed VMs,which uses dockerfiles to load the settings.In my case,that is to set up the opencv-python. I have tested it successfully on local sever using "gcloud preview app run ./app.yaml" and everything works…
T Ye
  • 11
  • 2
0
votes
1 answer

Appengine Managed VM deploy fails

My managed VM was deployed and working fine. Then about a week ago it stopped working and started returning 500 for all requests. This is an Ubuntu container which is running a flask application. The instances where showing as "restarting" in the…
0
votes
1 answer

AppEngine Flexible instances constantly respawning

I am deploying a Go application using AppEngine flexible. Below is my app.yaml. Sometimes after I deploy it stabilizes at 1 instance (it's a very low load application), but most of the time it constantly respawns upwards of 6 instances. My logs are…
0
votes
1 answer

Download version files from app engine

There is any way to download a file from google managed VM docker? we lost one that is in production version and I want to download it to my computer but I cant find the app path
Dor Shay
  • 189
  • 11
0
votes
2 answers

Invalid VM runtime specified: php55 Google Appengine

I am trying to upload php code to the google app engine but I get this failure notice during the upload: me@big-bite: $ appcfg.py -A my-hello-world -V v1 update ./ 09:36 AM Application: my-hello-world (was: myapp); version: v1 (was: None) 09:36 AM…
hep
  • 1
  • 1
  • 4
0
votes
1 answer

Insufficient Permission with Appengine Flex service account to access Drive folder

I have written an application that uses all the clients/sdks as officially documented. credentials = GoogleCredentials \ .get_application_default() \ .create_scoped('https://www.googleapis.com/auth/drive') drive = discovery.build( …