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
| # --- kubectl shortcuts --- | |
| # Drop this file into ~/.bash_aliases or source it manually: | |
| # source ~/.bash_aliases | |
| # Works best with bash; assumes kubectl is installed and configured. | |
| alias k='kubectl' | |
| # Common resource shortcuts | |
| alias kgp='kubectl get pods' # List pods in current namespace | |
| alias kgs='kubectl get svc' # List services |