New to Claude Skills? Learn how to install them →

Ggoogle on GitHub

GKE Workload Scaling

Free

Automate scaling for GKE applications with HPA and VPA.

by google17.6k stars on google/skills
Updated Aug 10, 2026
Get this skill

Free · Opens the source repo

What GKE Workload Scaling does

The GKE Workload Scaling skill provides developers and DevOps engineers with workflows and best practices for managing the scaling of applications deployed on Google Kubernetes Engine (GKE). It focuses on two primary scaling methods: Horizontal Pod Autoscaler (HPA) and Vertical Pod Autoscaler (VPA). By utilizing these autoscaling techniques, users can ensure their applications are responsive to varying workloads while optimizing resource usage.

This skill includes detailed instructions for manual scaling, which allows for immediate adjustments to deployment replicas for testing or urgent needs. It also covers the setup and configuration of HPA, which automatically adjusts the number of pod replicas based on CPU and memory utilization metrics. Users can apply HPA through command-line instructions or YAML manifests, making it easy to integrate into CI/CD pipelines.

In addition to HPA, the skill provides guidance on implementing VPA, which automatically adjusts the resource requests for pods to better match their actual usage. This is crucial for optimizing resource allocation and ensuring that applications run efficiently. The skill outlines the prerequisites for enabling VPA, the different update modes available, and best practices for avoiding conflicts between HPA and VPA.

Overall, GKE Workload Scaling is designed for teams looking to enhance their Kubernetes workload management by automating scaling processes and adhering to best practices for resource allocation. It streamlines the scaling process and helps maintain application performance under varying loads.

When to use it

Use this skill when you need to configure autoscaling for applications running on GKE, particularly when leveraging HPA and VPA.

When not to use it

This skill is not suitable for cluster-level autoscaling or for static cluster sizing; it focuses solely on workload-level scaling.

What you can build with it

Immediate Manual Scaling

Use manual scaling commands to quickly adjust the number of replicas in a deployment for urgent testing or changes.

Automated Resource Management

Implement HPA to automatically scale your application based on real-time CPU or memory usage, ensuring optimal performance.

Optimizing Resource Requests

Utilize VPA to adjust pod resource requests automatically, ensuring your applications are right-sized and efficient.

How to install GKE Workload Scaling

View source

1. Install with the skills CLI

npx skills add google/skills/gke-workload-scaling --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by google

GKE Workload Scaling

This skill provides workflows and best practices for scaling applications on Google Kubernetes Engine (GKE). It covers manual scaling, Horizontal Pod Autoscaling (HPA), and Vertical Pod Autoscaling (VPA).

Workflows

1. Manual Scaling

Scale a deployment to a fixed number of replicas. Useful for immediate manual intervention or testing.

Command:

kubectl scale deployment {deployment_name} --replicas={number} -n {namespace}

# Verify the scale event
kubectl get deployment {deployment_name} -n {namespace}

2. Horizontal Pod Autoscaling (HPA)

Automatically scale the number of pods based on observed CPU utilization, memory utilization, or custom metrics.

Prerequisites:

  • Metrics Server must be running (enabled by default on GKE).
  • Containers clearly define resource requests/limits.

Quick Command:

kubectl autoscale deployment {deployment_name} --cpu-percent=50 --min=1 --max=10

Manifest Approach (Recommended): Use a YAML manifest for version-controlled configuration. See assets/hpa-example.yaml for a template.

kubectl apply -f assets/hpa-example.yaml

# Verify HPA is created and fetching metrics
kubectl get hpa

Custom Metrics & External Metrics: For GKE, the modern and recommended approach for scaling based on Cloud Monitoring metrics (e.g., Pub/Sub queue length) is to use the External metric type, which is natively supported by the GKE control plane without requiring the Custom Metrics Adapter. For application-specific metrics exposed via Prometheus, you can use Google Cloud Managed Service for Prometheus or the Prometheus Adapter.

3. Vertical Pod Autoscaling (VPA)

Automatically adjust the CPU and memory reservations for your pods to match actual usage. This is critical for right-sizing workloads.

Prerequisites:

  • VPA must be enabled on the cluster.
    • Autopilot: Enabled by default.
    • Standard: Must be enabled manually.

Enable VPA on Standard Cluster:

gcloud container clusters update {cluster_name} --enable-vertical-pod-autoscaling --zone {zone}

Update Modes:

  • Off: Calculates recommendations but does not apply them. Good for "dry run" analysis.
  • Initial: Assigns resources only at pod creation time.
  • Auto: Updates running pods by restarting them if recommendations differ significantly from requests.
  • InPlaceOrRecreate: Attempts to update Pod resources without recreating the Pod. If in-place update is not possible, it reverts to Auto mode (requires GKE 1.34+).

Example: See assets/vpa-example.yaml for a configuration template.

Best Practices

  1. Define Resource Requests: HPA and VPA rely on accurate resource requests. Always define them in your container specs.
  2. Avoid Metric Conflicts: Do not configure HPA and VPA to use the same metric (e.g., both CPU). This causes thrashing.
    • Typical Pattern: HPA on CPU, VPA on Memory.
  3. Pod Disruption Budgets (PDBs): Define PDBs to ensure application availability during scaling events or node upgrades.
  4. HPA Lag: HPA has a stabilization window (default 5 mins) to prevent rapid fluctuation.
  5. VPA "Auto" Mode Risks: In "Auto" mode, VPA restarts pods to change resources. Ensure your application handles restarts gracefully (e.g., handles SIGTERM).
    • Note: By default, VPA requires at least 2 replicas to perform evictions (to prevent a situation where the only running replica is evicted, causing downtime). In GKE 1.22+, you can override this by setting minReplicas in PodUpdatePolicy.

Rightsizing Workflow

  1. Deploy VPA in Off mode for 24+ hours
  2. Read recommendations: kubectl describe vpa {deployment_name}-vpa -n {namespace}
  3. Compare target values against current requests
  4. Apply with 20% buffer: new_request = target * 1.2
  5. Use patch format or update deployment manifest to apply new resource requests
ConditionRecommendationRisk
CPU request >5x P95 actualReduce to P95 * 1.2Medium
Memory request >3x P95 actualReduce to P95 * 1.2Medium
CPU request >2x P95 actualRightsizing with 20% bufferLow
No resource limits setAdd limits to prevent noisy-neighborLow

Frequently asked questions about GKE Workload Scaling

Similar skills