#atom

Serverless container platform for stateless applications

Core Idea: Cloud Run is Google Cloud's serverless compute platform that automatically scales stateless containers, charging only for the resources used during request processing with zero cost when idle.

Key Elements

# Basic Cloud Run deployment command
gcloud run deploy SERVICE_NAME \
  --image=CONTAINER_IMAGE \
  --platform=managed \
  --region=REGION \
  --allow-unauthenticated \
  --port=PORT_NUMBER \
  --cpu=1 \
  --memory=512Mi \
  --min-instances=0 \
  --max-instances=10 \
  --set-env-vars="ENV_VAR1=value1,ENV_VAR2=value2"

Connections

References

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

#serverless #google-cloud #containers #paas #cloud-native


Connections:


Sources: