kubectl tail logs from all replica containers

Replace the <namespace> and <app-name> to get the logs when there are multiple containers in the same pod or different pods

kubectl -n <namespace> logs -f deployment/<app-name> \
    --all-containers=true --since=10m