Skip to content

Commit d779756

Browse files
authored
Fix the wrong download URL of helm and ks (#71)
1 parent e04ce39 commit d779756

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

base/hack/install_utils.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ HELM_VERSION=2.11.0
2727
HELM3_VERSIOIN=3.5.0
2828

2929
if [[ ${ARCH} == 'x86_64' ]]; then
30-
curl -f https://storage.googleapis.com/kubernetes-helm/helm-v${HELM_VERSION}-linux-amd64.tar.gz | tar xzv && \
30+
curl -f https://get.helm.sh/helm-v${HELM_VERSION}-linux-amd64.tar.gz | tar xzv && \
3131
mv linux-amd64/helm /usr/bin/ && \
3232
mv linux-amd64/tiller /usr/bin/ && \
3333
rm -rf linux-amd64
@@ -37,7 +37,7 @@ if [[ ${ARCH} == 'x86_64' ]]; then
3737
rm -rf linux-amd64
3838
elif [[ ${ARCH} == 'aarch64' ]]
3939
then
40-
curl -f https://storage.googleapis.com/kubernetes-helm/helm-v${HELM_VERSION}-linux-arm64.tar.gz | tar xzv && \
40+
curl -f https://get.helm.sh/helm-v${HELM_VERSION}-linux-arm64.tar.gz | tar xzv && \
4141
mv linux-arm64/helm /usr/bin/ && \
4242
mv linux-arm64/tiller /usr/bin/ && \
4343
rm -rf linux-arm64
@@ -67,7 +67,7 @@ else
6767
fi
6868

6969
# ks
70-
KS_VERSION=v0.0.64
70+
KS_VERSION=0.0.64
7171
if [[ ${ARCH} == 'x86_64' ]]; then
7272
curl -fL https://github.com/kubesphere-sigs/ks/releases/download/v${KS_VERSION}/ks-linux-amd64.tar.gz | tar xzv && \
7373
mv ks /usr/bin/

0 commit comments

Comments
 (0)