con un clic
triage-pending-pods
Diagnose pods stuck in Pending and identify scheduling constraints.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Diagnose pods stuck in Pending and identify scheduling constraints.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Identify why an AWS API call is denied and what policy element blocks it.
Diagnose EKS worker nodes in NotReady and determine safe remediation.
Identify the primary drivers of a sudden cloud cost increase and implement safe mitigations.
Diagnose GCP quota errors and identify the quota, scope, and fastest safe mitigation.
Diagnose node-level memory/disk/pid pressure and determine safe mitigations.
Diagnose in-cluster DNS resolution failures and isolate root causes.
| id | triage-pending-pods |
| name | Triage Pending Pods |
| description | Diagnose pods stuck in Pending and identify scheduling constraints. |
| tags | ["kubernetes","triage","scheduling","oncall"] |
| maturity | draft |
| inputs | {"namespace":"string","pod":"string?","label_selector":"string?"} |
| outputs | ["scheduling_blocker","recommended_fixes"] |
| tools_allowed | ["k8s.get","k8s.describe"] |
| safety | {"default_mode":"read_only","forbidden":["k8s.delete","k8s.apply","k8s.patch"],"requires_confirmation_for":[]} |
Use when pods remain in Pending longer than expected.
Insufficient cpu/memory: scale cluster, reduce requests, or shed load.taint {node.kubernetes.io/...}: add toleration only if correct.pod affinity/anti-affinity: loosen rules if they are too strict.unbound immediate PersistentVolumeClaims: investigate storage class/provisioner.exceeded quota: adjust quota or reduce consumption.Pending to Running.kubectl -n <ns> get pod <pod>
kubectl -n <ns> describe pod <pod>
kubectl get nodes