Skip to main content

Menu

LEVEL 0
0/5 XP
HomeAboutTopicsPricingMy VaultStats

Categories

πŸ€– Artificial Intelligence
☁️ Cloud and Infrastructure
πŸ’Ύ Data and Databases
πŸ’Ό Professional Skills
🎯 Programming and Development
πŸ”’ Security and Networking
πŸ“š Specialized Topics
HomeAboutTopicsPricingMy VaultStats
LEVEL 0
0/5 XP
GitHub
Β© 2026 CheatGridβ„’. All rights reserved.
Privacy PolicyTerms of UseAboutContact

Google Cloud Platform – GCP Core Cheat Sheet

Google Cloud Platform – GCP Core Cheat Sheet

Back to Cloud Computing
Updated 2026-04-20
Next Topic: IaaS Cheat Sheet

Google Cloud Platform (GCP) is Google's public cloud computing platform offering on-demand compute, storage, networking, databases, machine learning, and managed services that run on the same infrastructure powering Google Search, YouTube, and Gmail. GCP competes with AWS and Azure by emphasizing deep AI/ML integration (Gemini models, Vertex AI Agent Builder), global networking performance, and serverless-first architectures. A key mental model: GCP services are organized around a resource hierarchy (organizations β†’ folders β†’ projects β†’ resources) with IAM for fine-grained access control, making multi-project, multi-team deployments easier to govern at scale than flat permission models.


What This Cheat Sheet Covers

This topic spans 20 focused tables and 114 indexed concepts. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.

Table 1: Compute ServicesTable 2: Storage ServicesTable 3: Cloud Storage ClassesTable 4: Database ServicesTable 5: Networking ServicesTable 6: Networking AdvancedTable 7: Security and IdentityTable 8: Monitoring and LoggingTable 9: Data Analytics and ProcessingTable 10: Machine Learning and AITable 11: DevOps and CI/CDTable 12: Serverless and Event-DrivenTable 13: API ManagementTable 14: Container and Artifact ManagementTable 15: Caching and In-MemoryTable 16: Resource ManagementTable 17: Billing and Cost ManagementTable 18: Regions and ZonesTable 19: Migration ServicesTable 20: Command-Line Tools

Table 1: Compute Services

ServiceExampleDescription
Compute Engine
gcloud compute instances create my-vm --zone=us-central1-a --machine-type=e2-medium
β€’ Virtual machines (VMs) on Google infrastructure
β€’ choose predefined or custom machine types across families (E2, N2, C3, C4, H4D), supports GPUs and persistent disks
Cloud Run
gcloud run deploy my-service --image gcr.io/project/image --platform managed
β€’ Serverless container platform that scales HTTP containers from zero to thousands
β€’ pay-per-request, supports GPU workloads, websockets, and gRPC
Google Kubernetes Engine (GKE)
gcloud container clusters create my-cluster --num-nodes=3
β€’ Managed Kubernetes for container orchestration
β€’ Autopilot mode (Google manages nodes) and Standard mode (you manage nodes)
App Engine
gcloud app deploy app.yaml
β€’ Platform-as-a-Service (PaaS) for web apps and APIs
β€’ Standard environment (sandboxed, fast startup) or Flexible environment (custom runtimes on VMs)

More in Cloud Computing

  • GCP Cloud Services Cheat Sheet
  • IaaS Cheat Sheet
  • Amazon Web Services (AWS) - Core Cheat Sheet
  • Cloud Compliance and Governance Cheat Sheet
  • Cloud IAM (Identity and Access Management) Cheat Sheet
  • Cloud Well-Architected Framework Principles Cheat Sheet
View all 40 topics in Cloud Computing