google/gke-cost-optimization
>- 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).
npx skills add https://github.com/google/skills --skill gke-cost-optimization
This reference covers strategies and workflows for reducing Google Kubernetes
Engine (GKE) costs while maintaining a secure and reliable posture.
> MCP Tools: get_k8s_resource, describe_k8s_resource,
> apply_k8s_manifest, patch_k8s_resource, get_cluster
The golden path already includes cost-optimizing settings:
| Setting | Value | Impact |
| ------------------------ | ---------------------- | ----------------------- |
| autoscalingProfile | OPTIMIZE_UTILIZATION | Aggressive node |
: : : scale-down reduces idle :
: : : compute :
| verticalPodAutoscaling | enabled | VPA recommendations |
: : : prevent :
: : : over-provisioning :
| Autopilot pricing | Pay per pod request | No charge for unused |
: : : node capacity :
| Node Auto Provisioning | enabled | Right-sized node pools |
: : : created automatically :
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.
kubectl apply -f - <<EOF
apiVersion: v1
kind: ResourceQuota
metadata:
name: compute-quota
namespace: {namespace}
spec:
hard:
requests.cpu: "4"
requests.memory: 16Gi
limits.cpu: "8"
limits.memory: 32Gi
EOF
Adjust pod resource requests to match actual utilization. Over-provisioned
requests are one of the largest sources of waste.
# 1. Deploy VPA in recommendation mode
kubectl apply -f - <<EOF
apiVersion: autoscaling.k8s.io/v1
kind: VerticalPodAutoscaler
metadata:
name: {deployment_name}-vpa
spec:
targetRef:
apiVersion: apps/v1
kind: Deployment
name: {deployment_name}
updatePolicy:
updateMode: "Off"
EOF
# 2. Wait 24+ hours for data collection
# 3. 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.
apiVersion: cloud.google.com/v1
kind: ComputeClass
metadata:
name: spot-with-fallback
spec:
activeMigration:
optimizeRulePriority: true
priorities:
- machineFamily: n4
spot: true
- machineFamily: n4
spot: false
nodeSelector)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.
apiVersion: apps/v1
kind: Deployment
metadata:
name: stateless-spot-app
spec:
replicas: 2
template:
spec:
nodeSelector:
cloud.google.com/gke-provisioning: Spot
terminationGracePeriodSeconds: 25 # Must be < 30s for Spot preemption handling
containers:
- name: app
image: {image_name}
lifecycle:
preStop:
exec:
command: ["/bin/sh", "-c", "sleep 5"]
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 | Low |
: : optimized : :
| n4a | Axion Arm-based, general-purpose | Low |
: : price-performance : :
| n4 / n4d | General purpose (Intel/AMD), flexible shapes | Low-Medium |
| c4a | Compute-optimized (Arm), high efficiency | Medium-High |
| c3 / c4 | Compute-optimized (Intel) | Medium-High |
| c3d / c4d | Compute-optimized (AMD), high throughput | Medium-High |
| ek-standard | Autopilot enhanced (golden path) | 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:
workloads due to control plane fees.
appropriate min/max limits.
engineering teams instead of maintaining per-team clusters, using Namespaces
and ResourceQuotas to isolate workloads.
To inspect live node/pod utilization (kubectl top nodes/pods), view cluster
cost budgets (gcloud billing budgets list), or query detailed billing reports
in BigQuery (bq query), refer to the gke-cost-analysis skill.
For non-production environments, the following golden path deviations provide
cost efficiency without impacting production safety:
| Setting | Production (Golden | Dev/Test |
: : Path) : :
| ----------------------- | ------------------ | ----------------------------- |
| Cluster mode | Autopilot | Autopilot (cheaper with fewer |
: : : pods) :
| Release channel | Regular | Rapid (get fixes faster) |
| Private nodes | Required | Optional (simpler access) |
| Monitoring components | Full suite | SYSTEM_COMPONENTS only |
| Secret Manager rotation | 120s | Disabled |
| Maintenance windows | Configured | Not needed |
(--enable-cost-allocation) to gain billing transparency across namespaces
and labels.
multi-tenant environments to prevent runaway costs or noisy neighbors.
Off) and adjust requests to match P95 * 1.2`.
nodeSelector or ComputeClassfor stateless, fault-tolerant workloads to save 60-90%.
OPTIMIZE_UTILIZATION for aggressivenode scale-down on idle compute.
multi-team workloads into shared multi-tenant clusters.
Take google/gke-cost-optimization from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.