9 lines
143 B
Bash
9 lines
143 B
Bash
#!/usr/bin/env bash
|
|
|
|
# minikube (Local Kubernetes) completion
|
|
|
|
if command -v minikube &>/dev/null
|
|
then
|
|
eval "$(minikube completion bash)"
|
|
fi
|