Kubernetes Logs and Events Cheat Sheet/Show events for a specific object

Describe an object and inspect its event section.

Section: Event Analysis

Show events for a specific object

bash
bash
kubectl describe pod <pod> -n <namespace> | sed -n '/Events:/,$p'

Learn the surrounding workflow

Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.

Related commands

Same sheet · prioritizing Event Analysis
List namespace events
See the recent warning and normal events in a namespace.
OpenIn sheetbashsame section
Sort events by timestamp
Create an incident timeline from namespace events.
OpenIn sheetbashsame section
Sort all cluster events by timestamp
Find cluster-wide warnings around the same time window.
OpenIn sheetbashsame section
Show warning events only
Filter event list down to warning-level entries.
OpenIn sheetbashsame section
Get pod logs
Print logs from the default container in a pod.
Read logs via deployment resource
Print logs from a workload resource instead of a single pod.