mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 11:06:41 +00:00
14 lines
205 B
Bash
14 lines
205 B
Bash
#
|
|
# Kubernetes Related
|
|
#
|
|
|
|
alias kc="kubectl"
|
|
alias hl="helm"
|
|
alias mk="minikube"
|
|
|
|
export KUBECONFIG="$HOME/.kube/config:.kube/config"
|
|
|
|
if [ $commands[kubectl] ]; then
|
|
eval "$(kubectl completion zsh)"
|
|
fi
|