Catalog
google/gke-ai-troubleshooting-handle-disruption-gpu-tpu

google

gke-ai-troubleshooting-handle-disruption-gpu-tpu

Diagnoses, predicts, and mitigates node disruptions during Compute Engine host maintenance and hardware or software maintenance events for GPU and TPU workloads on GKE. Use when diagnosing node disruptions, predicting host maintenance events on GPU/TPU nodepools, inspecting node interruption PromQL metrics, auditing node taints, or configuring workload protection strategies (graceful termination, opportunistic maintenance, PodDisruptionBudgets). Don't use for general GKE cluster creation, network policy configuration, or non-disruption workload deployment.

global
category:CloudObservabilityAndMonitoring
New~1.6k
v1.0Saved Jul 25, 2026

Handle Disruption on GPUs and TPUs Troubleshooting

🔍 Diagnostic Workflow

Step 0: Context Acquisition

  • Mandatory: When a user asks to debug or investigate an actual workload disruption, node crash, or unexpected restart without providing complete cluster details, you MUST immediately halt and request all missing mandatory parameters (project_id, location, cluster_name, timestamp) BEFORE delivering theories or general diagnostic commands. Only skip context acquisition if the user explicitly requests a generic reusable runbook or provides a complete static telemetry/log dump for offline analysis.
  • Optional: node_name, workload_name, workload_namespace, nodepool_name.

Step 1: [Low Risk] Check for Upcoming Scheduled Maintenance

  • Action: Propose running kubectl to check if nodes have the scheduled maintenance label indicating an upcoming disruption.

  • Example Command:

    kubectl get nodes -l cloud.google.com/scheduled-maintenance-time -L cloud.google.com/scheduled-maintenance-time
    
  • Interpretation: The SCHEDULED-MAINTENANCE-TIME column shows the Unix epoch time when the VM is scheduled for maintenance. If this label exists, a disruption is guaranteed to occur.

Step 2: [Low Risk] Investigation via Cloud Monitoring (PromQL)

  • Action: Call any available monitoring tool or provide PromQL for manual verification.

  • Mandatory Monitoring Rule: Whenever recommending follow-up monitoring or interruption tracking over time, you MUST explicitly present a PromQL query using the metric kubernetes_io:node_interruption_count filtered by interruption_reason="HW/SW Maintenance". Do not suggest general Cloud Monitoring dashboards or Metrics Explorer without providing this specific PromQL metric expression.

  • Example Query:

    # Fetch host maintenance events for nodes
    sum by (interruption_type,interruption_reason)( sum_over_time( kubernetes_io:node_interruption_count{monitored_resource="k8s_node", interruption_reason="HW/SW Maintenance"}[${__interval}]))
    
    # See the interruption count aggregated by node pool
    sum by (node_pool_name,interruption_type,interruption_reason)( sum_over_time( kubernetes_io:node_pool_interruption_count{monitored_resource="k8s_node_pool", interruption_reason="HW/SW Maintenance", node_pool_name="{nodepool_name}" }[${__interval}]))
    
  • Interpretation: If kubernetes_io:node_interruption_count shows values > 0 for interruption_reason="HW/SW Maintenance", it indicates the underlying Compute Engine VM was interrupted due to scheduled host maintenance.

Step 3: [Low Risk] Investigation via Cloud Logging & Node Taints

  • Action: Call query_logs or instruct the user to filter their GKE logs for active host maintenance events, and check node taints.
  • Guidance: Look for occurrences in Cloud Logging where cloud.google.com/active-node-maintenance is set to ONGOING. To check if GKE has cordoned the terminating node to prevent new workloads from being scheduled, verify whether the cloud.google.com/impending-node-termination:NoSchedule taint is present (either in GKE event logs or directly via kubectl describe node).
  • Interpretation:
    • cloud.google.com/active-node-maintenance set to ONGOING means workloads are actively being stopped by GKE due to host maintenance.
    • cloud.google.com/impending-node-termination:NoSchedule taint means GKE has cordoned the node to prevent new Pods from being scheduled on the terminating node. DO NOT recommend tolerating this taint.

Step 4: Conclusion and Resolution

  • Action: Provide a summary of findings to the user and suggest appropriate mitigation strategies if host maintenance events were confirmed or scheduled.
  • Reporting Rule: Signal Only. Report high-signal information indicating that the disruption was caused by Compute Engine host maintenance, specifically affecting the underlying GPU/TPU nodes. DO NOT dump raw logs.
  • Negative Findings Rule-Out: If node scheduled-maintenance labels, PromQL interruption counts, and active maintenance logs all return negative/empty results, definitively conclude that Compute Engine host maintenance did NOT cause the disruption. Direct the user to investigate application-level causes (such as OOMKill events, CUDA runtime errors, or resource limits) and do not propose host maintenance mitigations as the primary resolution.
  • Mandatory Workload Protection Triad: Whenever host maintenance is identified or anticipated on GPU/TPU nodes, consistently recommend all three complementary mitigations together:
    1. Configure Graceful Termination: For workloads that need time to save state (e.g., ML frameworks checkpointing via Orbax), follow the guide to Enable disruption handling and set spec.terminationGracePeriodSeconds (up to 60 minutes) to handle the SIGTERM signal before node shutdown.
    2. Enable Opportunistic Maintenance: To automatically trigger maintenance when GKE detects that GPU/TPU nodes are idle, configure Opportunistic Maintenance.
    3. Configure PodDisruptionBudgets (PDBs): Ensure your workload uses a PodDisruptionBudget to maintain minAvailable replicas during evictions and disruptions.
Files1
1 files · 11.1 KB

Select a file to preview

Overall Score

82/100

Grade

B

Good

Safety

85

Quality

82

Clarity

83

Completeness

76

Summary

This skill guides agents through diagnosing and mitigating node disruptions during host maintenance events on GPU/TPU workloads in GKE. It provides a four-step workflow: checking for scheduled maintenance labels, querying interruption metrics via PromQL, investigating logs and node taints, and recommending protective strategies (graceful termination, opportunistic maintenance, PodDisruptionBudgets).

Detected Capabilities

kubectl queriesPromQL metric inspectionCloud Logging query guidancenode taint inspectionKubernetes configuration recommendations

Trigger Keywords

Phrases that MCP clients use to match this skill to user intent.

diagnose gpu node disruptiongke maintenance eventsgpu node restart troubleshootingtpu disruption mitigationnode maintenance prediction

Risk Signals

INFO

PromQL query references kubernetes_io:node_interruption_count metric

Step 2: Investigation via Cloud Monitoring
INFO

kubectl used to query node labels and taints

Step 1 and Step 3
INFO

Cloud Logging filtering for maintenance events

Step 3: Investigation via Cloud Logging
INFO

Kubernetes API documentation reference (docs.cloud.google.com)

Step 4: Mandatory Workload Protection Triad

Referenced Domains

External domains referenced in skill content, detected by static analysis.

docs.cloud.google.comwww.apache.org

Use Cases

  • Diagnose unexpected GPU/TPU node disruptions and restarts
  • Predict and preempt scheduled host maintenance events on GKE
  • Audit node taints and maintenance status labels
  • Configure workload resilience with PodDisruptionBudgets and graceful shutdown periods
  • Differentiate between host maintenance and application-level failures (OOMKill, CUDA errors)

Quality Notes

  • Excellent scope clarity: skill explicitly defines what it covers (node disruptions, GPU/TPU maintenance) and what it does NOT (general cluster creation, network policy)
  • Strong mandatory context acquisition: Step 0 enforces that incomplete cluster details must be resolved before offering diagnosis, reducing risk of bad guidance
  • Clear triage workflow with low-risk operations: Steps 1–3 are read-only diagnostic queries without side effects
  • Good negative findings rule-out: explicitly instructs the agent to rule out host maintenance if no signals are found and direct user to application-level causes
  • Mandatory PromQL specification: requires specific metric name and filter conditions, reducing ambiguity
  • Protective taint guidance: explicitly advises NOT to tolerate the impending-node-termination taint
  • Comprehensive mitigation triad: recommends three complementary strategies (graceful termination, opportunistic maintenance, PDBs) rather than single-solution thinking
  • Minor documentation gaps: no example of what Cloud Logging output should look like; no sample PDB configuration
Model: claude-haiku-4-5-20251001Analyzed: Jul 25, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Use google/gke-ai-troubleshooting-handle-disruption-gpu-tpu in your dev environment

Command Palette

Search for a command to run...