Suggest user to use 'hack/install-etcd.sh' when running integration tests without etcd found.

This commit is contained in:
xiangpengzhao 2017-05-12 15:55:09 +08:00
parent 6c50ffcf7b
commit 0cacf526b2

View File

@ -84,7 +84,8 @@ checkEtcdOnPath() {
kube::log::status "Checking etcd is on PATH"
which etcd && return
kube::log::status "Cannot find etcd, cannot run integration tests."
kube::log::status "Please see docs/devel/testing.md for instructions."
kube::log::status "Please see https://github.com/kubernetes/community/blob/master/contributors/devel/testing.md#install-etcd-dependency for instructions."
kube::log::usage "You can use 'hack/install-etcd.sh' to install a copy in third_party/."
return 1
}