Skip to content

Instantly share code, notes, and snippets.

@pffigueiredo
Created April 3, 2023 19:43
Show Gist options
  • Save pffigueiredo/04f5514f4f6f9bc3118ff17b1a7322d0 to your computer and use it in GitHub Desktop.
Save pffigueiredo/04f5514f4f6f9bc3118ff17b1a7322d0 to your computer and use it in GitHub Desktop.
Kubectl sheet cheat
// get live logs
kubectl logs --follow jobworker-75bc57f649-ftwn6 | grep -i 'CENA' -B 4 -A 2
--follow => live logs
-B => number of BEFORE lines
-A => number of AFTER lines
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment