#Google Cloud Platform (GCP)
GCP is known for Kubernetes, data, and ML services.
#Core Services
| Service | Purpose |
|---|---|
| Compute Engine | VMs |
| Cloud Storage | Object storage |
| Cloud SQL | Managed databases |
| Cloud Functions | Serverless |
| GKE | Kubernetes (best-in-class) |
| VPC | Networking |
| Cloud IAM | Identity |
#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!