View logs from the command line ΒΆ
This guide will show you how to view logs from the command line using kubectl.
Prerequisites ΒΆ
Find the pod name ΒΆ
You can view logs for a specific pod. First, you need to find the name of the pod you want to view logs for.
List all pods in the namespace:
bash
kubectl get pods -n <namespace>View logs ΒΆ
View logs for a specific pod:
bash
kubectl logs <pod-name> -n <namespace>