Skip to content

Instantly share code, notes, and snippets.

@dkeightley
Last active March 16, 2023 01:29
Show Gist options
  • Save dkeightley/7c5302acf14ff92f0aba4a26b6b968da to your computer and use it in GitHub Desktop.
Save dkeightley/7c5302acf14ff92f0aba4a26b6b968da to your computer and use it in GitHub Desktop.
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