finding-google-skills
Locates and loads the right Google product skill on demand from a remote catalog index, instead of preloading every skill. Use at the START of any request…
Optimizes GKE costs, rightsizes workloads, and configures Spot VMs, CUDs, cost allocation, and resource quotas. Use when optimizing GKE cluster or workload costs, configuring GKE cost allocation or quotas, rightsizing CPU/memory requests, or selecting Spot VMs and machine types.
$ npx -y skills add google/skills --skill gke-cost-optimization --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/gke-cost-optimizationContext preview
The summary Claude sees to decide when to auto-load this skill.
Optimizes GKE costs, rightsizes workloads, and configures Spot VMs, CUDs, cost allocation, and resource quotas. Use when optimizing GKE cluster or workload costs, configuring GKE cost allocation or quotas, rightsizing CPU/memory requests, or selecting Spot VMs and machine types.
name: gke-cost-optimization description: >- Optimizes GKE costs, rightsizes workloads, and configures Spot VMs, CUDs, cost allocation, and resource quotas. Use when optimizing GKE cluster or workload costs, configuring GKE cost allocation or quotas, rightsizing CPU/memory requests, or selecting Spot VMs and machine types. Don't use for general compute class provisioning or GPU Selection (use gke-compute-classes instead). metadata: category: CloudObservabilityAndMonitoring
This reference covers strategies and workflows for reducing Google Kubernetes Engine (GKE) costs while maintaining a secure and reliable posture.
To enable GKE cost allocation (`--enable-cost-allocation`) for billing tracking across namespaces and labels, inspect live cluster utilization (`kubectl top`), or run historical cost breakdown queries in BigQuery (`bq`), use the **`gke-cost-analysis`** skill. Once tracking is active and waste is diagnosed, apply the optimization workflows below.
Resource quotas restrict total resource consumption across tenants in multi-tenant clusters, preventing runaway costs. Template: [assets/resource-quota-example.yaml](assets/resource-quota-example.yaml) (set namespace + `hard` limits, then `kubectl apply -f`).
Adjust pod resource requests to match actual utilization. Over-provisioned requests are one of the largest sources of waste.
without evicting):
# 1. Deploy VPA in recommendation mode (template: assets/vpa-recommendation-mode.yaml)
kubectl apply -f assets/vpa-recommendation-mode.yaml
# 2. Wait 24+ hours for data collection, then read recommendations
kubectl get vpa {deployment_name}-vpa -o jsonpath='{.status.recommendation}'Condition | Action | Savings ----------------------------- | ---------------------------------- | ------- CPU request >5x P95 actual | Reduce to `P95 * 1.2` | High Memory request >3x P95 actual | Reduce to `P95 * 1.2` | High CPU request >2x P95 actual | Reduce to `P95 * 1.2` | Medium No resource requests set | Add requests (enables bin-packing) | Medium
horizontally and vertically to avoid conflicting scale events.
Management` > `GKE Cost Optimization`) for built-in rightsizing suggestions.
Use Spot VMs for fault-tolerant workloads to achieve 60-90% cost reduction.
For a Spot-first ComputeClass with On-Demand fallback (priority ordering, `activeMigration`, machine family selection), use the **`gke-compute-classes`** skill — ComputeClass YAML generation and priority configuration are its domain, not this skill's.
For stateless or batch workloads in GKE Autopilot, target Spot capacity directly using `nodeSelector`:
> [!WARNING] **Preemption Warning**: Spot VMs are interruptible and can be > preempted at any time with a 30-second notice. Workloads must be > fault-tolerant and run with at least 2 replicas for high availability. Always > explicitly warn users about this preemption risk when recommending Spot VMs.
The exact Pod-level selector is:
nodeSelector: cloud.google.com/gke-spot: "true"
Full worked Deployment (replicas >= 2, `terminationGracePeriodSeconds: 25`, `preStop` hook): [assets/spot-deployment-example.yaml](assets/spot-deployment-example.yaml).
**Spot-Suitable Workloads:**
Workload | Spot-Suitable? --------------------------------- | --------------- Batch / data processing | Yes Dev / test environments | Yes Stateless web/API (replicas >= 2) | Yes (with PDBs) Jobs with checkpointing | Yes Stateful workloads (databases) | No Single-replica critical services | No
When choosing node shapes or configuring ComputeClasses:
| Family | Use Case | Relative Cost | | ------------- | ------------------------------------------------- | ------------- | | e2 | General purpose, burstable | Lowest | | t2a / t2d | Scale-out (Arm/AMD), price-performance optimized | Low | | n4a | Axion Arm-based, general-purpose price-performance | Low | | n4 / n4d | General purpose (Intel/AMD), flexible shapes | Low-Medium | | c4a | Axion Arm-based, general-purpose, high efficiency | Medium | | c3 / c4 | Compute-optimized (Intel) | Medium-High | | c3d / c4d | Compute-optimized (AMD), high throughput | Medium-High | | ek-standard | Autopilot enhanced | Medium | | m3 / x4 | Memory-optimized, SAP HANA, large databases | High | | g2 (L4 GPU) | AI inference | High | | a3 (H100 GPU) | AI training | Highest | | a4 / a4x | Ultra-scale AI (Blackwell GPUs) | Highest |
For steady-state workloads with predictable baseline usage, purchase 1-year or 3-year CUDs:
high-30s% discount for 1-year, ~55% for 3-year (varies by machine family).
discounts (~28% 1-year, ~46% 3-year) in exchange for flexibility. -
This repository contains Agent Skills for Google products and technologies, including Google Cloud.
Repo: google/skills
Locates and loads the right Google product skill on demand from a remote catalog index, instead of preloading every skill. Use at the START of any request…
Provides safety-critical validation, guardrails, and data reduction for gcloud CLI operations across Google Cloud Platform (GCP) services and infrastructure.…
Provides expert guidance on authenticating and authorizing to Google Cloud services and APIs, covering human users, service identities, Application Default…
Guides a developer's first steps on Google Cloud, covering account creation, billing setup, project management, and deploying a first resource. Use when a new…
Searches, retrieves, and synthesizes official Google developer documentation across Google Cloud, AI/Gemini, Android, Chrome, Web, Flutter, Go, Firebase, and…
Guides developers through managing (adding, removing, and clearing) audience members for Google products using the Data Manager API and its associated client…