From aj-geddes-useful-ai-prompts-4
Deploys containerized applications on Google Cloud Run with automatic scaling, traffic management, and service mesh integration. Use for container-based serverless computing.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aj-geddes-useful-ai-prompts-4:gcp-cloud-runThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- [Overview](#overview)
Google Cloud Run enables deployment of containerized applications at scale without managing infrastructure. Run stateless HTTP containers with automatic scaling from zero to thousands of instances, paying only for compute time consumed.
Minimal working example:
# Build container image
gcloud builds submit --tag gcr.io/MY_PROJECT_ID/my-app:latest
# Deploy to Cloud Run
gcloud run deploy my-app \
--image gcr.io/MY_PROJECT_ID/my-app:latest \
--platform managed \
--region us-central1 \
--memory 512Mi \
--cpu 1 \
--timeout 3600 \
--max-instances 100 \
--min-instances 1 \
--no-allow-unauthenticated \
--set-env-vars NODE_ENV=production,DATABASE_URL=postgresql://...
# Allow public access
gcloud run services add-iam-policy-binding my-app \
--platform managed \
--region us-central1 \
--member=allUsers \
--role=roles/run.invoker
# Get service URL
gcloud run services describe my-app \
// ... (see reference guides for full implementation)
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| Cloud Run Deployment with gcloud CLI | Cloud Run Deployment with gcloud CLI |
| Containerized Application (Node.js) | Containerized Application (Node.js) |
| Terraform Cloud Run Configuration | Terraform Cloud Run Configuration |
| Docker Build and Push | Docker Build and Push |
npx claudepluginhub joshuarweaver/cascade-code-languages-misc-1 --plugin aj-geddes-useful-ai-prompts-4Builds and optimizes serverless applications on GCP Cloud Run and Cloud Functions, covering containerization, cold start mitigation, and event-driven architecture with Pub/Sub.
Guides secure deployments to Google Cloud Storage (static apps), Cloud Run, or GKE (dynamic/container apps) after analyzing app type via package.json and enforcing secret scanning.
Builds production-ready serverless applications on GCP Cloud Run. Covers containerized services, event-driven functions, cold start optimization, and Pub/Sub architecture.