Commit 861ab506 authored by SneakyFish5's avatar SneakyFish5 Committed by Mosmi Mannancheril

Better error message if etcd not installed

parent 1658e70f
...@@ -24,6 +24,7 @@ kube::etcd::validate() { ...@@ -24,6 +24,7 @@ kube::etcd::validate() {
# validate if in path # validate if in path
command -v etcd >/dev/null || { command -v etcd >/dev/null || {
kube::log::usage "etcd must be in your PATH" kube::log::usage "etcd must be in your PATH"
kube::log::info "You can use 'hack/install-etcd.sh' to install a copy in third_party/."
exit 1 exit 1
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment