Skip to content

Instantly share code, notes, and snippets.

@dkeightley
Last active March 16, 2023 01:29
rancher-pod-logs
for pod in $(kubectl get pods -n cattle-system -l app=rancher --no-headers -o custom-columns=":metadata.name")
do
kubectl logs -n cattle-system $pod -c rancher |& gzip > $pod.log.gz
kubectl logs -n cattle-system $pod -c rancher -p |& gzip > $pod.previous.log.gz
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment