zshrc/zsh.d/kubernetes.zsh
2024-02-27 21:05:32 +01:00

14 lines
211 B
Bash

if command-exists "kubectl"; then
source <(kubectl completion zsh)
fi
if command-exists "k3s"; then
source <(k3s completion zsh)
fi
if command-exists "minikube"; then
source <(minikube completion zsh)
fi