#atom

Serverless container platform for stateless HTTP workloads

Core Idea: Google Cloud Run is a managed compute platform that automatically scales stateless containers, allowing developers to run containerized applications without managing infrastructure while only paying for actual usage.

Key Elements

# Deploy a container to Cloud Run
gcloud run deploy service-name \
  --image gcr.io/project-id/image-name \
  --platform managed \
  --region us-central1 \
  --allow-unauthenticated \
  --memory 512Mi \
  --cpu 1 \
  --min-instances 0 \
  --max-instances 10 \
  --concurrency 80 \
  --timeout 300s

Connections

References

  1. Google Cloud Run Documentation (https://cloud.google.com/run/docs)
  2. "Self-Hosting n8n on Google Cloud Run" guide

#google-cloud #serverless #containers #cloud-native #cloud-run


Connections:


Sources: