#Google Cloud Platform (GCP)

GCP is known for Kubernetes, data, and ML services.


#Core Services

ServicePurpose
Compute EngineVMs
Cloud StorageObject storage
Cloud SQLManaged databases
Cloud FunctionsServerless
GKEKubernetes (best-in-class)
VPCNetworking
Cloud IAMIdentity

#gcloud CLI

bash
1# Install
2curl https://sdk.cloud.google.com | bash
3
4# Initialize
5gcloud init
6
7# Compute examples
8gcloud compute instances list
9gcloud compute instances create my-vm --zone=us-central1-a
10
11# Storage
12gsutil ls
13gsutil cp file.txt gs://my-bucket/

#Resource Organization

diagram
Organization
└── Folder
    └── Project
        └── Resources

[!TIP] Pro Tip: GKE offers the best managed Kubernetes experience!