gke-workload-scaling
Manages scaling for GKE workloads using HPA and VPA
Install / Use
npx skills add google/skills --skill gke-workload-scalingInstalls into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
AutomationSupported Platforms
Tags
Our assessment of gke-workload-scaling
gke-workload-scaling scores 83/100 on our quality scale, 1067th of 1,555 Automation skills we index.
Its SKILL.md is 4.9 KB long, well organised into 9 sections with 4 code examples: a solid amount of guidance for an agent.
With 20,340 GitHub stars, it is one of the more widely adopted skills in the catalogue.
Maintenance, license and trust
- The repository was last updated 3 days ago, so gke-workload-scaling is actively maintained.
- It is released under the Apache-2.0 license, a permissive license that allows use, modification and commercial use with attribution.
- Its trust signals score 100/100, with no cautions. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
gke-workload-scaling compared with similar skills
All 4 of these similar skills score higher than gke-workload-scaling; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| gke-workload-scaling (this skill)by google | 83 | 20.3k | 3d ago | SKILL.md |
| Agent-Reachby Panniantong | 100 | 85.6k | 11d ago | CLAUDE.md |
| rufloby ruvnet | 100 | 73.3k | today | CLAUDE.md |
| Scraplingby D4Vinci | 100 | 83.9k | today | MCP Server |
| algorithmic-artby anthropics | 100 | 177.9k | 4d ago | SKILL.md |
Frequently asked questions
- How do I install gke-workload-scaling?
- Run
npx skills add google/skills --skill gke-workload-scaling. The install tabs above show the steps for each supported agent. - Which AI agents does gke-workload-scaling work with?
- It is written for Universal, as a SKILL.md file. Other agents that read the same format can often use it too.
- Is gke-workload-scaling safe to use?
- It is Apache-2.0-licensed and scores 100/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is gke-workload-scaling still maintained?
- The repository was last updated 3 days ago, so gke-workload-scaling is actively maintained.
Skill content
View source on GitHubname: gke-workload-scaling description: >- Manages scaling for GKE workloads using HPA and VPA. Use when configuring Horizontal Pod Autoscaler (HPA), configuring Vertical Pod Autoscaler (VPA), or applying best practices for GKE workload autoscaling. Do not use for cluster-level autoscaling (Cluster Autoscaler), static cluster sizing, or configuring node-level machine styles directly. metadata: version: "1.0.0" category: Containers
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 toAutomode (requires GKE 1.34+).
Example: See assets/vpa-example.yaml for a configuration template.
Best Practices
- Define Resource Requests: HPA and VPA rely on accurate resource requests. Always define them in your container specs.
- 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.
- Pod Disruption Budgets (PDBs): Define PDBs to ensure application availability during scaling events or node upgrades.
- HPA Lag: HPA has a stabilization window (default 5 mins) to prevent rapid fluctuation.
- 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
minReplicasinPodUpdatePolicy.
- 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
Rightsizing Workflow
- Deploy VPA in
Offmode for 24+ hours - Read recommendations:
kubectl describe vpa {deployment_name}-vpa -n {namespace} - Compare
targetvalues against currentrequests - Apply with 20% buffer:
new_request = target * 1.2 - Use patch format or update deployment manifest to apply new resource requests
Condition | Recommendation | Risk
----------------------------- | ------------------------------------ | ------
CPU request >5x P95 actual | Reduce to P95 * 1.2 | Medium
Memory request >3x P95 actual | Reduce to P95 * 1.2 | Medium
CPU request >2x P95 actual | Rightsizing with 20% buffer | Low
No resource limits set | Add limits to prevent noisy-neighbor | Low
Related Skills
Agent-Reach
85.6kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu — one CLI, zero API fees.
ruflo
73.3k🌊 The original agent harness. Deploy intelligent multi-player swarms, coordinate autonomous workflows, and build conversational AI systems. Features adaptive memory, self-learning intelligence, federation, vector RAG integration, and native Claude Code / Codex / Hermes and many more Integrated
Scrapling
83.9k🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ and follow here for daily tips and tricks: https://x.com/Scrapling_dev
algorithmic-art
177.9kCreating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems.
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
