Process Flow - kubectl logs for debugging
Start: Identify Pod
Run kubectl logs <pod-name>
Fetch logs from Pod's container
Display logs in terminal
Analyze logs for errors or info
Decide next step: Fix issue or get more logs
Use options like -c, --since, --tail
End
This flow shows how to use kubectl logs command to fetch and analyze logs from a Kubernetes pod for debugging.