How to View a Pod in Kubernetes

To view detailed information about a Kubernetes pod, you can use the `kubectl get pod` command followed by the pod name. This command provides a summary of the pod's status. For more detailed information, use `kubectl describe pod <pod-name>`, which gives a comprehensive overview, including events and resource usage.

kubectl get pod <pod-name>

kubectl describe pod <pod-name>

Replace `<pod-name>` with your actual pod's name to retrieve the details.