VMs, managed instance groups, GKE cluster creation, and the Autopilot mode that eliminates node management. Deploy a production-grade container workload.
VMs, managed instance groups, GKE cluster creation, and the Autopilot mode that eliminates node management. Deploy a production-grade container workload.
Cloud Run runs Docker containers without managing servers. It scales to zero (no traffic = no cost) and handles scaling automatically.
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]# Build and push to Artifact Registry
gcloud run deploy my-service \
--source . \
--platform managed \
--region us-central1 \
--allow-unauthenticated
# Or build/push manually
gcloud builds submit --tag gcr.io/PROJECT_ID/my-app
gcloud run deploy my-app --image gcr.io/PROJECT_ID/my-app# Create a VM
gcloud compute instances create my-vm \
--machine-type e2-micro \
--zone us-central1-a \
--image-family debian-12 \
--image-project debian-cloud
# SSH into it
gcloud compute ssh my-vm --zone us-central1-a
# Stop when done to avoid charges
gcloud compute instances stop my-vm --zone us-central1-agcloud run deploy --source . auto-builds and deploys from source code.The foundations from today carry directly into Day 3. In the next session the focus shifts to Cloud Storage, BigQuery, and Databases — building directly on everything covered here.
Before moving on, verify you can answer these without looking:
Live Bootcamp
Learn this in person — 2 days, 5 cities
Thu–Fri sessions in Denver, Los Angeles, New York, Chicago, and Dallas. $1,490 per seat. June–October 2026.
Reserve Your Seat →