| name | coreweave-incident-runbook |
| description | Incident response runbook for CoreWeave GPU workload failures.
Use when inference services are down, GPUs are unavailable,
or responding to production incidents on CoreWeave.
Trigger with phrases like "coreweave incident", "coreweave outage",
"coreweave runbook", "coreweave service down".
|
| allowed-tools | Read, Bash(kubectl:*), Grep |
| version | 1.11.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","gpu-cloud","kubernetes","inference","coreweave"] |
| compatibility | Designed for Claude Code |
CoreWeave Incident Runbook
Community-contributed. Not affiliated with, endorsed by, or sponsored by CoreWeave, Inc. CoreWeave is a registered trademark of CoreWeave, Inc.
Triage Steps
kubectl get pods -l app=inference -o wide
kubectl get events --sort-by=.lastTimestamp | tail -20
kubectl get nodes -l gpu.nvidia.com/class -o wide
kubectl exec -it $(kubectl get pod -l app=inference -o name | head -1) -- nvidia-smi
Common Incidents
Inference Service Down
- Check pod status and events
- If OOMKilled: reduce batch size or upgrade GPU
- If ImagePullBackOff: check registry credentials
- If Pending: check GPU quota and availability
GPU Node Failure
- Pods will be rescheduled automatically
- If no capacity: scale down non-critical workloads
- Contact CoreWeave support for extended outages
Model Loading Failure
- Check HuggingFace token secret exists
- Verify model name spelling
- Check PVC has sufficient storage
- Review container logs for download errors
Rollback
kubectl rollout undo deployment/inference
Resources
Next Steps
For data handling, see coreweave-data-handling.