Skip to content

Commit e918885

Browse files
authored
Merge pull request #1762 from tiraboschi/test_1.34
test: run by default with kind 0.30.0 and kubevirt v1.6.2
2 parents 79b2e04 + c36466b commit e918885

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/run-e2e-tests.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ SKIP_INSTALL=${SKIP_INSTALL:-}
2323
KIND_E2E=${KIND_E2E:-}
2424
CONTAINER_ENGINE=${CONTAINER_ENGINE:-docker}
2525
KIND_SUDO=${KIND_SUDO:-}
26+
KIND_VERSION=${KIND_VERSION:-v0.30.0}
2627
SKIP_KUBECTL_INSTALL=${SKIP_KUBECTL_INSTALL:-}
2728
SKIP_KIND_INSTALL=${SKIP_KIND_INSTALL:-}
2829
SKIP_KUBEVIRT_INSTALL=${SKIP_KUBEVIRT_INSTALL:-}
29-
KUBEVIRT_VERSION=${KUBEVIRT_VERSION:-v1.3.0-rc.1}
30+
KUBEVIRT_VERSION=${KUBEVIRT_VERSION:-v1.6.2}
3031

3132
# Build a descheduler image
3233
IMAGE_TAG=v$(date +%Y%m%d)-$(git describe --tags)
@@ -43,7 +44,7 @@ if [ -n "$KIND_E2E" ]; then
4344
curl -Lo kubectl https://dl.k8s.io/release/${K8S_VERSION}/bin/linux/amd64/kubectl && chmod +x kubectl && mv kubectl /usr/local/bin/
4445
fi
4546
if [ -z "${SKIP_KIND_INSTALL}" ]; then
46-
wget https://github.com/kubernetes-sigs/kind/releases/download/v0.27.0/kind-linux-amd64
47+
wget https://github.com/kubernetes-sigs/kind/releases/download/${KIND_VERSION}/kind-linux-amd64
4748
chmod +x kind-linux-amd64
4849
mv kind-linux-amd64 kind
4950
export PATH=$PATH:$PWD

0 commit comments

Comments
 (0)