Skip to content

Standard Operating Procedures

Detailed step-by-step guides for Google Cloud Run operations.

IDTitleDescription
SOP-001Deploy ContainerDeploy a pre-built container image to Cloud Run
SOP-002Deploy from SourceDeploy directly from source code without Docker
SOP-003Configure AutoscalingSet up scaling policies and concurrency limits
SOP-004Set Up GPU WorkloadsConfigure NVIDIA L4 GPUs for AI inference

Quick Start

bash
# Deploy a container in one command
gcloud run deploy my-service \
  --image gcr.io/my-project/my-image \
  --region us-central1 \
  --allow-unauthenticated