Created
January 26, 2022 08:03
-
-
Save ondrejsika/4ec8e11b8816224607aa05c6f225aad0 to your computer and use it in GitHub Desktop.
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
. /complete-alias/complete_alias | |
source <(kubectl completion bash) | |
source <(helm completion bash) | |
source "/kube-ps1/kube-ps1.sh" | |
export KUBE_PS1_SYMBOL_ENABLE=false | |
export PS1='$(kube_ps1)'$PS1 | |
# kubectl | |
alias k=kubectl | |
complete -F _complete_alias k | |
# kubectx | |
alias kx=kubectx | |
complete -F _complete_alias kx | |
# kubens | |
alias kn=kubens | |
complete -F _complete_alias kn | |
alias w="watch -n 0.3" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment