mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-05-28 04:04:39 -04:00
use upstream etcd github path instead of redirecting one
In the installation script we use coreos/etcd path which redirect to etcd-io/etcd. This commit replace the same. Signed-off-by: Humble Chirammal <humble.devassy@gmail.com>
This commit is contained in:
parent
2f26236f28
commit
af1225ab94
1 changed files with 1 additions and 1 deletions
|
|
@ -160,7 +160,7 @@ kube::etcd::install() {
|
|||
|
||||
if [[ ${os} == "darwin" ]]; then
|
||||
download_file="etcd-v${ETCD_VERSION}-${os}-${arch}.zip"
|
||||
url="https://github.com/coreos/etcd/releases/download/v${ETCD_VERSION}/${download_file}"
|
||||
url="https://github.com/etcd-io/etcd/releases/download/v${ETCD_VERSION}/${download_file}"
|
||||
kube::util::download_file "${url}" "${download_file}"
|
||||
unzip -o "${download_file}"
|
||||
ln -fns "etcd-v${ETCD_VERSION}-${os}-${arch}" etcd
|
||||
|
|
|
|||
Loading…
Reference in a new issue