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.
1 parent 3cd819c commit 151d277Copy full SHA for 151d277
base/hack/install_utils.sh
@@ -67,13 +67,13 @@ else
67
fi
68
69
# ks
70
-
+KS_VERSION=v0.0.64
71
if [[ ${ARCH} == 'x86_64' ]]; then
72
- curl -fL https://github.com/kubesphere-sigs/ks/releases/download/v0.0.62/ks-linux-amd64.tar.gz | tar xzv && \
+ curl -fL https://github.com/kubesphere-sigs/ks/releases/download/v${KS_VERSION}/ks-linux-amd64.tar.gz | tar xzv && \
73
mv ks /usr/bin/
74
elif [[ ${ARCH} == 'aarch64' ]]
75
then
76
- curl -fL https://github.com/kubesphere-sigs/ks/releases/download/v0.0.62/ks-linux-arm64.tar.gz | tar xzv && \
+ curl -fL https://github.com/kubesphere-sigs/ks/releases/download/v${KS_VERSION}/ks-linux-arm64.tar.gz | tar xzv && \
77
78
else
79
echo "do not support this arch"
0 commit comments