/gke-workload-scaling
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
$ npx -y skills add google/skills --skill gke-workload-scaling --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/gke-workload-scaling
Context preview
The summary Claude sees to decide when to auto-load this skill.
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
SKILL.md
gke-workload-scaling.SKILL.mdname: 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:
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](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](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
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
Read more
name: 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: 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](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](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
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
This repository contains Agent Skills for Google products and technologies, including Google Cloud. This repository is under active development.
Repo: google/skills
Other skills on google-skills.
- /data-manager-api-audience-ingestion
Guides developers through managing (adding, removing, and clearing) audience members for Google products using the Data Manager API and its associated client libraries. Use this skill when the user wants to upload audience members, remove specific users, or clear/replace an
Open skill - /data-manager-api-event-ingestion
Guides developers through implementing event and conversion ingestion to Google products using the Data Manager API /v1/events/ingest endpoint and its associated client libraries. Use this skill when the user wants to upload offline conversions, enhanced conversions for leads,
Open skill - /data-manager-api-setup
Guides developers through client library installation and authentication setup steps for the Data Manager API. Use this skill when a user is getting started with the Data Manager API and needs to setup their local environment, install the client library, or setup access to the
Open skill - /google-ads-api-account-diagnostics
Diagnoses Google Ads account performance issues such as conversion loss (value or volume), low lead flow/volume, and lost impression share (opportunities) due to ad rank, bids, or budgets. Use when troubleshooting sudden performance drops, analyzing campaign impression share
Open skill - /google-ads-api-mcp-setup
Guides developers through downloading, configuring, and installing the official open-source Google Ads MCP Server. Use this skill when a user wants to connect their AI assistant (such as Gemini, Claude Code, or Cursor) to their Google Ads account to query campaigns or retrieve
Open skill - /google-ads-api-quickstart
Guides developers through Google Ads API quickstart: credential setup, choosing from 6 client libraries/REST, configuring environments, and running a "retrieve campaigns" script. Troubleshoots common setup errors: USER_PERMISSION_DENIED, login_customer_id issues, and
Open skill

