Skip to content

Instantly share code, notes, and snippets.

View aljorhythm's full-sized avatar
💻
👥

Joel Lim aljorhythm

💻
👥
View GitHub Profile
@aljorhythm
aljorhythm / kubectl-shortcuts.sh
Created March 9, 2022 09:19 — forked from tamas-molnar/kubectl-shortcuts.sh
aliases and shortcuts for kubectl
alias kc='kubectl'
alias kclf='kubectl logs --tail=200 -f'
alias kcgs='kubectl get service -o wide'
alias kcgd='kubectl get deployment -o wide'
alias kcgp='kubectl get pod -o wide'
alias kcgn='kubectl get node -o wide'
alias kcdp='kubectl describe pod'
alias kcds='kubectl describe service'
alias kcdd='kubectl describe deployment'
alias kcdf='kubectl delete -f'