Last active
October 29, 2023 14:54
Simple script to get logs from the pods of a deployment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
DEPLOYMENT=$1 | |
for p in $(kubectl get pods | grep ^${DEPLOYMENT}- | cut -f 1 -d ' '); do | |
echo --------------------------- | |
echo $p | |
echo --------------------------- | |
kubectl logs $p | |
done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment