We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 85103ee + 09d4d65 commit 2e57e54Copy full SHA for 2e57e54
hack/lib/etcd.sh
@@ -46,7 +46,7 @@ kube::etcd::validate() {
46
fi
47
48
# validate installed version is at least equal to minimum
49
- version=$(etcd --version | tail -n +1 | head -n 1 | cut -d " " -f 3)
+ version=$(etcd --version | grep Version | tail -n +1 | head -n 1 | cut -d " " -f 3)
50
if [[ $(kube::etcd::version "${ETCD_VERSION}") -gt $(kube::etcd::version "${version}") ]]; then
51
export PATH=${KUBE_ROOT}/third_party/etcd:${PATH}
52
hash etcd
0 commit comments