Skip to content

Instantly share code, notes, and snippets.

View dhammike64's full-sized avatar
🏠
Work from home

Dhammika Rathnayake dhammike64

🏠
Work from home
View GitHub Profile
@dhammike64
dhammike64 / kubectlrc
Created September 24, 2020 12:07 — forked from mlsmrc/kubectlrc
Aliases for Kubernetes control cli kubectl - Specific for CKAD certification
alias k='kubectl'
alias kg='k get'
alias kgp='kg pod'
alias kd='k describe'
alias kdp='kd pod'
alias kD='k delete --force --grace-period=0'
alias kDp='kD pod'
alias kc='k create'