completions/minikube: Add minikube completion (#130)

Co-authored-by: sophal <hongsophal@github.com>
This commit is contained in:
SOPHAL HONG
2020-06-11 17:22:58 +09:00
committed by GitHub
parent e54736e81e
commit fdd28c810a

View File

@ -0,0 +1,8 @@
#!/usr/bin/env bash
# minikube (Kubernetes CLI) completion
if command -v minikube &>/dev/null
then
eval "$(minikube completion bash)"
fi