Questions tagged [app-engine-flexible]

App Engine Flexible is a cloud computing technology for hosting web applications in Google-managed data centers. Google App Engine is a Platform as a Service (PaaS) offering for Node.js, Ruby, Java, Python, Go and PHP.

Learn more about App Engine Flexible. App Engine allows developers to focus on doing what they do best, writing code. Based on Google Compute Engine, the App Engine flexible environment automatically scales your app up and down while balancing the load. Microservices, authorization, SQL and noSQL databases, traffic splitting, logging, search, versioning, security scanning, memcache, and content delivery networks are all supported natively. In addition, the App Engine flexible environment allows you to customize your runtime and even the operating system of your virtual machine using Docker.

467 questions
1
vote
1 answer

Unable to deploy my code to google cloud app engine via gitlab

I am trying to create a gitlab pipeline for deploying my spring boot app to google app engine and i am able to authenticate app engine to gitlab but at deployment step of ci file i am getting Java 7+ JRE must be installed and on your system PATH…
1
vote
1 answer

Modify worker_connections on App Engine Flexible for .NET

I am testing out a .NET websocket server on Google App Engine Flexible. As the number of concurrent connections to the server increased I started to see connection failures and 4096 worker_connections are not enough in the logs. I logged into the…
Kevin Yockey
  • 41
  • 1
  • 5
1
vote
1 answer

Can you use Kaniko to build a custom image for App Engine Flexible with gcloud app deploy?

I'm building a custom image for App Engine Flexible with gcloud app deploy currently. I've played with using Kaniko to get caching working with gcloud builds submit for other projects, but is it possible to enable Kaniko for a build submitted with…
1
vote
1 answer

App Engine Flex - Specify Dot Net Runtime version

I'm building an app with .NET core on Google App Engine flex. These are two top-level items in my app.yaml file... runtime: aspnetcore env: flex Is there a way I can ensure that it runs on the dotnet 2.1 runtime? How do I specify that I want it to…
1
vote
1 answer

oauth2client.flask_util redirect_uri in http instead of https

I know oauth2client is deprecated but still, that's the one we use. When I start the oauth2 process with Google, it always tries to redirect me to the HTTP version of my app. I've seen the url_for method of Flask is supposed to be based on the…
Valentin Coudert
  • 1,759
  • 3
  • 19
  • 44
1
vote
1 answer

Mail Gun Email Not Working In Flask On Google App Engine

I'm trying to send an automated mailgun email from my flask app on Google App Engine. It works fine when I run locally. However, even though it runs without error the email is not being sent. Here is the code: def send_simple_message(text): url…
1
vote
1 answer

Google App Engine Flex environment: ETag HTTP header removed when resource is gzip'd?

I have a custom Node.js application deployed on Google App Engine flexible environment that uses dynamically calculated digest hashes to set ETag HTTP response headers for specific resources. This works fine on an AWS EC2 instance. But, not on…
1
vote
0 answers

Unable to connect redis (Memorystore) from app engine flex SSH

I have deployed an application build on .Net Core 2.1 and deployed to GCP. I am using ServiceStack to connect the Memorystore instance. But I am unable to connect the redis instance using redis-cli after opening SSH of my app engine flex service.…
1
vote
1 answer

Google App Engine - Hosting project and website on same server

I have a NodeJs App Engine project . I also have an Apache website in another server which hosts the project dashboard. This site is the one using the node API. I am willing to host both projects on the same server on this Google Cloud project. Can…
htafoya
  • 18,261
  • 11
  • 80
  • 104
1
vote
2 answers

Google App Engine Flexible weekly update - how it works?

As documented, the App Engine Flexible instances are restarted on a weekly basis for updates. This is a problem because I have configured the environment with a minimum of 1 instance active, then when the weekly update occurs I found that there is a…
1
vote
1 answer

How to enforce HTTPS traffic to Flexible Google App Engine with custom domain?

I have a site on Google Domains (http://example.com). But I want it should redirect to https://example.com on flexible app engine environment. what changes required in app.yaml for flexible app engine environment. Mu current app.yaml as…
pradeep
  • 23
  • 1
  • 6
1
vote
2 answers

AppEngine instance hours

Is it possible to run app engine for free? Whatever I have tried, it seems to be not possible, I am also confused how they calculate the CPU hours. For example, I am using Flex environment with maximum number of instances; 1, and CPU; 1. I…
Erti-Chris Eelmaa
  • 25,338
  • 6
  • 61
  • 78
1
vote
2 answers

Google app engine's flexible always routes traffic to the same instance?

A node.js app using cluster deployed on google app engine flexible does scale but the traffic always get sent to one instance. The app uses the cluster module to takes advantage of all the cpus, and the only way specify a scaling measure is to use…
1
vote
1 answer

How to copy an exe file to App Engine (flex) with Go runtime?

My Go application needs to use a stand-alone executable, which I would like to copy it along with 'gcloud app deploy' command during deployment to GAE flex environment. I have tried keeping the exe in the folder where other go files are located…
1
vote
1 answer

Deploying helloworld to app engine flexible with go111 fails

I'm attempting to deploy the helloworld app (source code here) to app engine flexible. When I deploy this without any changes to the code, everything works fine. But I want to use go1.11, so I changed the app.yaml to say runtime: go111 # changed…
Rohith
  • 2,043
  • 1
  • 17
  • 42