mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 12:06:41 +00:00
16 lines
231 B
Bash
16 lines
231 B
Bash
#
|
|
# Kubernetes Related
|
|
#
|
|
|
|
alias kc="kubectl"
|
|
alias hl="helm"
|
|
alias mk="minikube"
|
|
|
|
if command-exists kubectl; then
|
|
# lazy-load kubectl setup
|
|
_kubectl() {
|
|
unset -f _kubectl
|
|
eval "$(command kubectl completion zsh)"
|
|
}
|
|
fi
|