Questions tagged [google-cloud-run]

Cloud Run is a managed compute platform that enables you to run stateless containers that are invocable via HTTP requests, providing comprehensive servicefull systems where responsibilities can be outsourced to a specialist service provider.

Cloud Run is a managed compute platform that enables you to run stateless containers that are invocable via HTTP requests.

Official sites:

2585 questions
0
votes
0 answers

Go on Cloud Run: Memory Limit Exceeded

I have the following scenario and am looking for an ideal strategy to manage memory for a go container running in Google Cloud Run. With the current design I'm reaching the Cloud Run memory limit of 512MiB resulting in a hard crash. This service's…
Michael
  • 1,428
  • 3
  • 15
  • 34
0
votes
0 answers

Publishing WebSocket events to Pub/Sub

I would like to create a streaming pipeline which uses a WebSocket connection to ingest real-time trading events and then publish them to a Pub/Sub topic. My original idea was to use a cloud function which gets triggered frequently and publishes the…
0
votes
1 answer

How to restrict Artifact Registry locations without setting an organization

I would like to use Google's Artifact registry to keep build artifacts from Cloud Run from cloud repo commits. When I set this up by default, the registry is using the multi-region bucket storage, which leads to traffic replication charges. I would…
sygi
  • 4,557
  • 2
  • 32
  • 54
0
votes
0 answers

Google Cloud Platform Manual Deployment Fails : ./gradlew: permission denied

I am new to GCP trying sample POC with various gcloud services. When trying to manually deploy a Sample Java Spring Boot (gradle) app from local to my Gcloud platform (following steps as mentioned in…
0
votes
1 answer

Access to localhost from a locally deployed Cloud Run container (through VS Code)

I am running a Cloud Run service on the Cloud Run emulator through VS Code. At some point, I need to access to data stored on a Firebase Storage local emulator (say localhost:9199). However, my Python code on Cloud Run is facing this…
DCoder
  • 93
  • 6
0
votes
0 answers

How to troubleshoot Firestore Total timeout?

I have several Cloud Functions running with Google Cloud that interact with Firebase. All but one of the functions are working normally, reading and writing to Firebase. The one function gets an error: Total timeout of API…
0
votes
0 answers

Firebase functions v2 and traffic allocation

Is there a way to manage traffic allocation during deployment of Firebase 2nd gen cloud functions? When you deploy with Cloud Run, you can specify tag and --no-traffic, but not with Firebase CLI. In my case, I'd like a staged rollout with partial…
0
votes
1 answer

Redacting sensitive information from automatically generated logs from Google Cloud Run

In a service running on google cloud run, I have an endpoint that essentially accepts an access token in the query string and returns some user details of the user that is corresponding to that access token. Something like…
0
votes
0 answers

Google cloud run giving 404 for my docker app in port 8000

I~m trying to deploy my app into Gooogle cloud run but it's showing me this image In my localhost the app works fine and these are my docker-compose.yml version: '2' services: redis: image: 'redis:3.0-alpine' command: redis-server…
Filipe Ferminiano
  • 8,373
  • 25
  • 104
  • 174
0
votes
1 answer

Can't get Python GCP Cloud Run gRPC service to respond

I am developing a chat app that has three main components (so far). I shall described the "architecture" of the working local development environment: a client in SolidJS running in vite, using nice-grpc-web (a little TypeScript gRPC-web…
serlingpa
  • 12,024
  • 24
  • 80
  • 130
0
votes
0 answers

Deployment of Docker Container to CloudRun fails

I am attempting to configure an automatic deployment system which builds/re-builds a docker container to GCP's Cloud Run, from the Artifact Registry whenever any change are made to the source code. When I finally get to the last stage in my CI/CD…
0
votes
1 answer

What might cause environment variables to be missing in my Flask app when deployed on Google Cloud Run?

I deployed a flask app to google cloud run and want to put some API keys into the environment variables (mostly to keep them out of github since I set up continuous deployment from there). However, when I configure the environment variables for the…
0
votes
1 answer

How can I configure PHP FPM for Google Cloud Run in Docker?

I'm trying to get a PHP FPM application working on Google Cloud Run (Docker), but I'm not sure how to set it up to run with FPM instead of Apache? I've looked all around, but don't see any clear instructions. I followed the Google PHP Quickstart…
user19677630
0
votes
1 answer

How can we attach a service account to cloud run service while deploying through github actions?

I am trying to deploy a cloud run service using github workflow, this cloud run service performs some gcp actions for which I want to bind a service account to the cloud run service while deploying the same. through gcloud cli we can achieve the…
0
votes
1 answer

Django on GCP failed to import CSV file using import-export

I have setup a model in Django and there is a requirement to allow editor to update records using CSV import. I installed import-export, following the guide from django-import-export and setup the importer. The importer works as expected during…