Skip to content

Instantly share code, notes, and snippets.

View saurabhchandrapatel's full-sized avatar
🏠
Working from home

Saurabh Chandra Patel saurabhchandrapatel

🏠
Working from home
View GitHub Profile
@saurabhchandrapatel
saurabhchandrapatel / kubectl-shortcuts.sh
Created November 17, 2020 07:38 — 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'