mirror of
https://github.com/kubevirt/kubevirt.core.git
synced 2026-07-30 03:14:34 +00:00
Merge pull request #109 from 0xFelix/improve-e2e
Bump e2e software versions
This commit is contained in:
2
Makefile
2
Makefile
@@ -6,7 +6,7 @@ cluster-up:
|
|||||||
|
|
||||||
.PHONY: cluster-down
|
.PHONY: cluster-down
|
||||||
cluster-down:
|
cluster-down:
|
||||||
hack/e2e-setup.sh --cleanup
|
hack/e2e-setup.sh --install-kind --install-kubectl --cleanup
|
||||||
|
|
||||||
.PHONY: build-venv
|
.PHONY: build-venv
|
||||||
build-venv:
|
build-venv:
|
||||||
|
|||||||
@@ -23,17 +23,17 @@ set_default_params() {
|
|||||||
BIN_DIR=${BIN_DIR:-$DIR/../bin}
|
BIN_DIR=${BIN_DIR:-$DIR/../bin}
|
||||||
|
|
||||||
KIND=${KIND:-$BIN_DIR/kind}
|
KIND=${KIND:-$BIN_DIR/kind}
|
||||||
KIND_VERSION=${KIND_VERSION:-v0.22.0}
|
KIND_VERSION=${KIND_VERSION:-v0.23.0}
|
||||||
|
|
||||||
KUBECTL=${KUBECTL:-$BIN_DIR/kubectl}
|
KUBECTL=${KUBECTL:-$BIN_DIR/kubectl}
|
||||||
KUBECTL_VERSION=${KUBECTL_VERSION:-v1.29.2}
|
KUBECTL_VERSION=${KUBECTL_VERSION:-v1.30.2}
|
||||||
|
|
||||||
KUBEVIRT_VERSION=${KUBEVIRT_VERSION:-v1.1.0}
|
KUBEVIRT_VERSION=${KUBEVIRT_VERSION:-v1.2.2}
|
||||||
KUBEVIRT_CDI_VERSION=${KUBEVIRT_CDI_VERSION:-v1.58.1}
|
KUBEVIRT_CDI_VERSION=${KUBEVIRT_CDI_VERSION:-v1.59.0}
|
||||||
KUBEVIRT_COMMON_INSTANCETYPES_VERSION=${KUBEVIRT_COMMON_INSTANCETYPES_VERSION:-v0.4.0}
|
KUBEVIRT_COMMON_INSTANCETYPES_VERSION=${KUBEVIRT_COMMON_INSTANCETYPES_VERSION:-v1.0.0}
|
||||||
KUBEVIRT_USE_EMULATION=${KUBEVIRT_USE_EMULATION:-"false"}
|
KUBEVIRT_USE_EMULATION=${KUBEVIRT_USE_EMULATION:-"false"}
|
||||||
|
|
||||||
CNAO_VERSION=${CNAO_VERSION:-v0.91.0}
|
CNAO_VERSION=${CNAO_VERSION:-v0.93.0}
|
||||||
|
|
||||||
REGISTRY_NAME=${REGISTRY_NAME:-kind-registry}
|
REGISTRY_NAME=${REGISTRY_NAME:-kind-registry}
|
||||||
REGISTRY_PORT=${REGISTRY_PORT:-5001}
|
REGISTRY_PORT=${REGISTRY_PORT:-5001}
|
||||||
@@ -389,11 +389,6 @@ if [ "${ARGCOUNT}" -eq "0" ]; then
|
|||||||
OPT_CREATE_NAD=true
|
OPT_CREATE_NAD=true
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${OPT_CLEANUP}" == true ]; then
|
|
||||||
cleanup
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "${OPT_INSTALL_KIND}" == true ]; then
|
if [ "${OPT_INSTALL_KIND}" == true ]; then
|
||||||
install_kind
|
install_kind
|
||||||
fi
|
fi
|
||||||
@@ -402,6 +397,11 @@ if [ "${OPT_INSTALL_KUBECTL}" == true ]; then
|
|||||||
install_kubectl
|
install_kubectl
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "${OPT_CLEANUP}" == true ]; then
|
||||||
|
cleanup
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
if [ "${OPT_CONFIGURE_INOTIFY_LIMITS}" == true ]; then
|
if [ "${OPT_CONFIGURE_INOTIFY_LIMITS}" == true ]; then
|
||||||
configure_inotify_limits
|
configure_inotify_limits
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user