Running kubectl logs shows me the stderr/stdout of one Kubernetes container.
kubectl logs
How can I get the aggregated stderr/stdout of a set of pods, preferably those
You can also do this by service name.
First, try to find the service name of the respective pod which corresponds to multiple pods of the same service. kubectl get svc.
kubectl get svc
Next, run the following command to display logs from each container.
kubectl logs -f service/