mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-25 17:12:50 +00:00
97 lines
2.5 KiB
Bash
Executable File
97 lines
2.5 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# Copyright 2020 The KubeSphere Authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
ISLINUX=true
|
|
OSTYPE="linux"
|
|
|
|
if [ "x$(uname)" != "xLinux" ]; then
|
|
echo ""
|
|
echo 'Warning: Non-Linux operating systems are not supported! After downloading, please copy the tar.gz file to linux.'
|
|
ISLINUX=false
|
|
fi
|
|
|
|
# Fetch latest version
|
|
if [ "x${VERSION}" = "x" ]; then
|
|
VERSION="$(curl -sL https://api.github.com/repos/kubesphere/kubekey/releases |
|
|
grep -o 'download/v[0-9]*.[0-9]*.[0-9]*/' |
|
|
sort --version-sort |
|
|
tail -1 | awk -F'/' '{ print $2}')"
|
|
VERSION="${VERSION##*/}"
|
|
fi
|
|
|
|
if [ -z "${ARCH}" ]; then
|
|
case "$(uname -m)" in
|
|
x86_64)
|
|
ARCH=amd64
|
|
;;
|
|
armv8*)
|
|
ARCH=arm64
|
|
;;
|
|
aarch64*)
|
|
ARCH=arm64
|
|
;;
|
|
*)
|
|
echo "${ARCH}, isn't supported"
|
|
exit 1
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
if [ "x${VERSION}" = "x" ]; then
|
|
echo "Unable to get latest Kubekey version. Set VERSION env var and re-run. For example: export VERSION=v1.0.0"
|
|
echo ""
|
|
exit
|
|
fi
|
|
|
|
DOWNLOAD_URL="https://github.com/kubesphere/kubekey/releases/download/${VERSION}/kubekey-${VERSION}-${OSTYPE}-${ARCH}.tar.gz"
|
|
if [ "x${KKZONE}" = "xcn" ]; then
|
|
DOWNLOAD_URL="https://kubernetes.pek3b.qingstor.com/kubekey/releases/download/${VERSION}/kubekey-${VERSION}-${OSTYPE}-${ARCH}.tar.gz"
|
|
fi
|
|
|
|
echo ""
|
|
echo "Downloading kubekey ${VERSION} from ${DOWNLOAD_URL} ..."
|
|
echo ""
|
|
|
|
curl -fsLO "$DOWNLOAD_URL"
|
|
if [ $? -ne 0 ]; then
|
|
echo ""
|
|
echo "Failed to download Kubekey ${VERSION} !"
|
|
echo ""
|
|
echo "Please verify the version you are trying to download."
|
|
echo ""
|
|
exit
|
|
fi
|
|
|
|
if [ ${ISLINUX} = true ]; then
|
|
filename="kubekey-${VERSION}-${OSTYPE}-${ARCH}.tar.gz"
|
|
ret='0'
|
|
command -v tar >/dev/null 2>&1 || { ret='1'; }
|
|
if [ "$ret" -eq 0 ]; then
|
|
tar -xzf "${filename}"
|
|
else
|
|
echo "Kubekey ${VERSION} Download Complete!"
|
|
echo ""
|
|
echo "Try to unpack the ${filename} failed."
|
|
echo "tar: command not found, please unpack the ${filename} manually."
|
|
exit
|
|
fi
|
|
fi
|
|
|
|
echo ""
|
|
echo "Kubekey ${VERSION} Download Complete!"
|
|
echo ""
|
|
|