From 247ea7fc7807bf09e3d7a02799bf76304c4f3cfa Mon Sep 17 00:00:00 2001 From: Humble Chirammal Date: Tue, 16 May 2023 10:34:19 +0530 Subject: [PATCH] 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 --- hack/lib/etcd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/lib/etcd.sh b/hack/lib/etcd.sh index 04d67f8a543..9941a838459 100755 --- a/hack/lib/etcd.sh +++ b/hack/lib/etcd.sh @@ -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