This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# I put them in my shell profile | |
# I use zsh so it's in ~/.zshrc | |
# for bash, it might be in ~/.bash_profile | |
alias k='kubectl' | |
alias ka='kubectl apply -f' | |
alias kex='kubectl exec -ti' | |
alias kl='kubectl logs' | |
alias kg='kubectl get' | |
alias kgp='kubectl get pods' |