Cloud DevOps & Containers Path
Master modern containerization, serverless compute, and global traffic routing.
Infrastructure as a Service (Virtual Machines)
Deploy and manage configurable virtual machine compute nodes with persistent block storage.
Compute Engine (GCE)
Custom and predefined VMs on Google's global network with live migration during hardware maintenance.
gcloud compute instances create web-1 --zone=us-central1-a --machine-type=e2-mediumServerless Container Execution
Deploy stateless containerized microservices that automatically scale from zero to thousands.
Cloud Run
Runs any OCI container, scales from 0 to 1,000s in seconds, and handles up to 1,000 concurrent requests per container.
gcloud run deploy api --image=gcr.io/proj/api:v1 --region=us-central1 --allow-unauthenticatedManaged Kubernetes Orchestration
Deploy and manage complex multi-container microservice architectures at scale.
Google Kubernetes Engine (GKE)
Created by the original authors of Kubernetes. Autopilot mode eliminates node management with per-pod pricing.
gcloud container clusters create-auto prod-cluster --region=us-central1Global Load Balancing & Traffic Routing
Route worldwide user traffic to the closest healthy backend with a single Anycast IP.
Cloud Load Balancing
Single global Anycast IP routes traffic worldwide to the closest healthy region with integrated Cloud Armor WAF.
gcloud compute backend-services create web-backend --global --protocol=HTTP