بنقرة واحدة
diagnose-crashloopbackoff
Triage pods restarting repeatedly and identify the most likely root cause.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Triage pods restarting repeatedly and identify the most likely root cause.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف 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 pods stuck in Pending and identify scheduling constraints.
| id | diagnose-crashloop |
| name | Diagnose CrashLoopBackOff |
| description | Triage pods restarting repeatedly and identify the most likely root cause. |
| tags | ["kubernetes","triage","oncall","crashloop"] |
| maturity | draft |
| inputs | {"namespace":"string","pod":"string?","workload":"string?","time_window":"string?"} |
| outputs | ["suspected_root_causes","verification_steps","safe_next_actions"] |
| tools_allowed | ["k8s.get","k8s.describe","k8s.logs"] |
| safety | {"default_mode":"read_only","forbidden":["k8s.delete","k8s.apply","k8s.patch"],"requires_confirmation_for":[]} |
Use when a pod is in CrashLoopBackOff or restarting and you need to determine why.
137 / OOMKilled: investigate memory limits/usage and leaks.1 + stack trace: likely application/config issue.diagnose-imagepullbackoff.Running and stays stable for multiple probe periods.Example investigation flow (parameterize values):
kubectl -n <ns> get pod <pod> -o wide
kubectl -n <ns> describe pod <pod>
kubectl -n <ns> logs <pod> --all-containers --previous --tail=200