Skip to content

Instantly share code, notes, and snippets.

View SaiMun92's full-sized avatar

Lee Sai Mun SaiMun92

  • SAP
  • Singapore
View GitHub Profile
@SaiMun92
SaiMun92 / kubectl-shortcuts.sh
Created June 22, 2023 00:50 — 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'