mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
36db988f73
As Travis CI `https://travis-ci.org/` is getting shutdown date on June 15th. Either we need to move to new place https://www.travis-ci.com/ or we can switch to github action to push image and the helm charts when a PR is merged. fixes: #1781 Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
48 lines
1.4 KiB
Bash
Executable File
48 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# This script will be used by centos CI to run functional test
|
|
# against different Kubernetes version
|
|
export KUBE_VERSION=$1
|
|
shift
|
|
# parse the Kubernetes version, return the digit passed as argument
|
|
# v1.17.0 -> kube_version 1 -> 1
|
|
# v1.17.0 -> kube_version 2 -> 17
|
|
kube_version() {
|
|
echo "${KUBE_VERSION}" | sed 's/^v//' | cut -d'.' -f"${1}"
|
|
}
|
|
|
|
# configure global environment variables
|
|
# shellcheck source=build.env
|
|
source "$(dirname "${0}")/../build.env"
|
|
cat <<EOF | sudo tee -a /etc/environment
|
|
MINIKUBE_VERSION=${MINIKUBE_VERSION}
|
|
VM_DRIVER=${VM_DRIVER}
|
|
CHANGE_MINIKUBE_NONE_USER=${CHANGE_MINIKUBE_NONE_USER}
|
|
EOF
|
|
|
|
sudo scripts/minikube.sh up
|
|
sudo scripts/minikube.sh deploy-rook
|
|
sudo scripts/minikube.sh create-block-pool
|
|
# pull docker images to speed up e2e
|
|
sudo scripts/minikube.sh cephcsi
|
|
sudo scripts/minikube.sh k8s-sidecar
|
|
KUBE_MAJOR=$(kube_version 1)
|
|
KUBE_MINOR=$(kube_version 2)
|
|
# skip snapshot operation if kube version is less than 1.17.0
|
|
if [[ "${KUBE_MAJOR}" -ge 1 ]] && [[ "${KUBE_MINOR}" -ge 17 ]]; then
|
|
# delete snapshot CRD created by ceph-csi in rook
|
|
scripts/install-snapshot.sh delete-crd
|
|
# install snapshot controller
|
|
scripts/install-snapshot.sh install
|
|
fi
|
|
|
|
# functional tests
|
|
make run-e2e E2E_ARGS="${*}"
|
|
|
|
if [[ "${KUBE_MAJOR}" -ge 1 ]] && [[ "${KUBE_MINOR}" -ge 17 ]]; then
|
|
# delete snapshot CRD
|
|
scripts/install-snapshot.sh cleanup
|
|
fi
|
|
sudo scripts/minikube.sh clean
|