mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
538b854853
when we deploy rook+cephcsi for E2E, the external-snapshotter in cephcsi deployed by rook will create the CRD, we need to delete the crd created by external-snapshotter. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
23 lines
787 B
Bash
Executable File
23 lines
787 B
Bash
Executable File
#!/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
|
|
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
|
|
# delete snapshot CRD created by ceph-csi in rook
|
|
scripts/install-snapshot.sh delete-crd
|
|
# install snapshot controller
|
|
scripts/install-snapshot.sh install
|
|
sudo chown -R travis: "$HOME"/.minikube /usr/local/bin/kubectl
|
|
# functional tests
|
|
go test github.com/ceph/ceph-csi/e2e --deploy-timeout=10 -timeout=30m --cephcsi-namespace=cephcsi-e2e-$RANDOM -v -mod=vendor
|
|
|
|
scripts/install-snapshot.sh cleanup
|
|
sudo scripts/minikube.sh clean
|