mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 13:26:40 +00:00
12 lines
160 B
Bash
12 lines
160 B
Bash
#
|
|
# Kubernetes Related
|
|
#
|
|
|
|
alias kc="kubectl"
|
|
alias hl="helm"
|
|
alias mk="minikube"
|
|
|
|
if command -v kubectl > /dev/null; then
|
|
eval "$(kubectl completion zsh)"
|
|
fi
|