Lazy commit on fry.

This commit is contained in:
James Downie 2025-09-18 22:32:33 +10:00
parent 10a92f2c53
commit bc88774a60

View File

@ -2,5 +2,9 @@
NS="$1" NS="$1"
DEPL="$2" DEPL="$2"
kubectl logs -n "$NS" "deployment/$DEPL" if [ "$3" = "-f" ]; then
kubectl logs -n "$NS" -f "deployment/$DEPL"
else
kubectl logs -n "$NS" "deployment/$DEPL"
fi