mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-14 06:15:45 +00: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
6616e1f238
commit
247ea7fc78
@ -160,7 +160,7 @@ kube::etcd::install() {
|
|||||||
|
|
||||||
if [[ ${os} == "darwin" ]]; then
|
if [[ ${os} == "darwin" ]]; then
|
||||||
download_file="etcd-v${ETCD_VERSION}-${os}-${arch}.zip"
|
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}"
|
kube::util::download_file "${url}" "${download_file}"
|
||||||
unzip -o "${download_file}"
|
unzip -o "${download_file}"
|
||||||
ln -fns "etcd-v${ETCD_VERSION}-${os}-${arch}" etcd
|
ln -fns "etcd-v${ETCD_VERSION}-${os}-${arch}" etcd
|
||||||
|
Loading…
Reference in New Issue
Block a user