2019-06-13 09:10:02 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# This script will be used by travis to run functional test
|
|
|
|
# against different kuberentes version
|
|
|
|
export KUBE_VERSION=$1
|
|
|
|
sudo scripts/minikube.sh up
|
2019-12-03 12:36:15 +00:00
|
|
|
sudo scripts/minikube.sh deploy-rook
|
2019-06-13 09:10:02 +00:00
|
|
|
# pull docker images to speed up e2e
|
|
|
|
sudo scripts/minikube.sh cephcsi
|
|
|
|
sudo scripts/minikube.sh k8s-sidecar
|
|
|
|
sudo chown -R travis: "$HOME"/.minikube /usr/local/bin/kubectl
|
|
|
|
# functional tests
|
2020-04-01 07:20:43 +00:00
|
|
|
go test github.com/ceph/ceph-csi/e2e --deploy-timeout=10 -timeout=30m --cephcsi-namespace=cephcsi-e2e-$RANDOM -v -mod=vendor
|
2019-06-13 09:10:02 +00:00
|
|
|
|
|
|
|
sudo scripts/minikube.sh clean
|