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.
Questions tagged [google-cloud-run]
16 questions
2
votes
0 answers
Figure out what sends SIGTERM to my process
I'm running debian docker container at google cloud run
(gcc (Debian 10.2.1-6+build2) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2).
Something sends SIGTERM to my app and it dies.
There is no obvious reason why.
How can figure out what…

marianna
- 21
- 2
1
vote
0 answers
Why should I use Cloud Composer?
We recently started using Cloud Composer for our data engineering pipelines. For even a small environment that autoscales from 1 to 3 (in fact using just 1 worker most of the time), it's quite expensive at ~$350/month. We don't currently have many…
yl_elm_city
1
vote
1 answer
How to delete all but the latest revision of Google cloud run container images?
I am hosting my containerized application using Google cloud run. To save cost, I want to delete all but the active revisions of my application's Docker image.
I use a job of my GitLab pipeline to handle the credentials and settings using…

Bengt
- 131
- 5
1
vote
1 answer
GCP cloud run job fails without a reason
A scheduled GCP cloud run job is failing sometimes (most if the time its running correctly) without a proper cause in the error message.
The only message its returning is a very obscure one: "Execution JOB_NAME has failed to complete, 0/1 tasks were…

Ouerghi Yassine
- 109
- 6
1
vote
0 answers
Cannot connect to a on-premise VM via Cloud VPN from Google Cloud Run
I am trying to reach an on-premise machine (let's call it exovie) from Google Cloud Run via the Serverless VPC Connector.
Simplified network configuration
This is how the network is configured:
The VPC is connected to our on-premise network…

Mathieu Bour
- 111
- 3
1
vote
0 answers
Place different applications in Google Cloud under the same domain assigning subdomains for each one
I'm asking an opinion or some guide for this problem. I have a couple of applications in Google Cloud Platform that I need to place under the same domain (let's call it mydomain.com), using a different subdomain for each one, like this:
App 1…

Renan Baggio
- 111
- 2
0
votes
0 answers
Google Cloud Run server keeps restarting after 'Unhandled Exception:' with no details
I have a Dart server deployed onto Google Cloud Run. It works perfectly fine in my Dev environment. And works some of the time in Cloud Run. But too often it throws an error and restarts causing the request to fail.
See example logs below. Anyone…

That's Me
- 1
- 2
0
votes
0 answers
Eventarc Triggers Not Receiving Events When GKE clusters are created
I want to create an eventarc trigger which can send payload messages to Cloud Run whenever a new GKE cluster is created.The code seems to be working when I created another eventarc trigger which send messages to Cloud Run whenever a compute engine…

Syam
- 1
0
votes
0 answers
Attach Cloud Storage as shared NFS storage for CloudRun
I want to attach a shared static storage that is not ephimeral after cloudrun instance gets terminated. Can we use gFuse with CloudStorage to achieve this ?
IF so by introducing CloudFuse, do we get any additional latencies
0
votes
0 answers
How do I set up a Cloud Run to communicate through our internal VPN using a custom URL
In GCP, we would like to connect to a Cloud Run application through our internal network using a custom URL.
We have a cloud run answering on a custom URL, externally. We are using an IPsec VPN to connect to GCP internally. We have a Private…

pt1xoom
- 1
- 1
0
votes
1 answer
Cloud Run Secret Reference getting mounted as Directory instead of File
Need some help with Cloud Run with Secret Manager, we need to mount 2 secrets as volume (file only), following is the yaml from Cloud Run.
volumeMounts:
- name: secret-2f1d5ec9-d681-4b0f-8a77-204c5f853330
readOnly: true
…

Ravi
- 111
- 3
0
votes
0 answers
Google Cloud Run: Block access to VM's metadata server
I have cloud run instances that runs users code and I was made aware that their code could access the instance's metadata just by querying the VM's metadata server from their code:
$ curl…

Théo Champion
- 111
- 1
0
votes
1 answer
Google Cloud Serverless VPC Access Not Working in Both Directions
I have a Cloud Run service which I would like to connect to my default VPC network through a Serverless VPC connector. The final goal with this is to allow my Cloud Run instances to access an on-prem server through a separately configured VPN, but…

Conor Strejcek
- 101
- 2
0
votes
2 answers
Cloud Run / Secret Manager Free Tier
I'm using Cloud Run for the backend of a project I'm working on, in part due to its generous free tier (2 million requests per month, free). But the services require some secret values (database password, Oauth secret key, etc.), so I have followed…

Geno Racklin Asher
- 101
- 1
0
votes
1 answer
How to create Cloud Run mapping to wildcard subdomain
I host my app with cloud run and use domain from GoDaddy. It is work perfectly. Now I want to make possible have url address for every users account like user1.myapp.com, user2.myapp.com.
How can I do it with cloud run and GoDaddy?enter image…