feat(kubectl): add aliases for get events (#13147)

This commit is contained in:
mm503 2025-05-29 02:33:01 -05:00 committed by GitHub
commit 658240f498
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 122 additions and 118 deletions

View file

@ -36,6 +36,8 @@ alias kcgc='kubectl config get-contexts'
# General aliases
alias kdel='kubectl delete'
alias kdelf='kubectl delete -f'
alias kge='kubectl get events --sort-by=".lastTimestamp"'
alias kgew='kubectl get events --sort-by=".lastTimestamp" --watch'
# Pod management.
alias kgp='kubectl get pods'