Skip to content

Instantly share code, notes, and snippets.

View andreibogdan's full-sized avatar
💭
I may be slow to respond.

Andrei Bogdan andreibogdan

💭
I may be slow to respond.
View GitHub Profile
@tamas-molnar
tamas-molnar / kubectl-shortcuts.sh
Last active June 18, 2024 06:44
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'