blob: 7eaab63f61a6c10e0496824ff793792cad16d170 [file] [log] [blame]
#!/usr/bin/env bash
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
OS=$(go env GOOS)
ARCH=$(go env GOHOSTARCH)
INSTALL_DIR=/usr/local/bin
TEMP_DIR=/tmp/skywalking-infra-e2e
KUBECTL_VERSION=v1.19.1
ISTIOCTL_VERSION=1.9.1
SWCTL_VERSION=76ffc9a70bfeb30526f30dd532fd617ae5da48d0
prepare_ok=true
# install kubectl
function install_kubectl()
{
if ! command -v kubectl &> /dev/null; then
curl -LO https://dl.k8s.io/release/${KUBECTL_VERSION}/bin/${OS}/${ARCH}/kubectl && chmod +x ./kubectl && mv ./kubectl ${INSTALL_DIR}
if [ $? -ne 0 ]; then
echo "install kubectl error, please check"
prepare_ok=false
fi
fi
}
# install istioctl
function install_istioctl()
{
if ! command -v istioctl &> /dev/null; then
mkdir -p $TEMP_DIR && cd $TEMP_DIR
curl -L https://istio.io/downloadIstio | ISTIO_VERSION=${ISTIOCTL_VERSION} TARGET_ARCH=${ARCH} sh -
if [ $? -ne 0 ]; then
echo "install istioctl error, please check"
prepare_ok=false
fi
cp istio-${ISTIO_VERSION}/bin/istioctl $INSTALL_DIR
fi
}
# install swctl
function install_swctl()
{
if ! command -v swctl &> /dev/null; then
cd $TEMP_DIR && wget https://github.com/apache/skywalking-cli/archive/${SWCTL_VERSION}.tar.gz -O - |\
tar xz && cd skywalking-cli-${SWCTL_VERSION} && make install DESTDIR=${INSTALL_DIR}
if [ $? -ne 0 ]; then
echo "install swctl error, please check"
prepare_ok=false
fi
fi
}
function install_all()
{
echo "check e2e dependencies..."
install_kubectl
install_istioctl
install_swctl
if [ "$prepare_ok" = false ]; then
echo "check e2e dependencies failed"
exit
else
echo "check e2e dependencies successfully"
fi
}
install_all