`kubectl logs` is your friend.
When something breaks in K8s, the first reflex is "what does
the pod itself say?".
TASK
----
First create a pod, then read its logs:
kubectl run debugpod --image=nginx
kubectl logs debugpod
Pass when the logs print.
Sign in to save your code and track progress across devices.