Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
chrischdi committed Aug 2, 2024
1 parent df721ab commit 520d85c
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions hack/e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,21 @@ export E2E_VM_OPERATOR_VERSION="${VM_OPERATOR_VERSION:-v1.8.6-0-gde75746a}"
export DOCKER_IMAGE_TAR="/tmp/images/image.tar"
export GC_KIND="false"


#TODO remove, for debugging
set -x

# Prepare kindest/node images for all the required Kubernetes version; this implies
# 1. Kubernetes version labels (e.g. latest) to the corresponding version numbers.
# 2. Pre-pulling the corresponding kindest/node image if available; if not, building the image locally.
# Following variables are currently checked (if defined):
# - KUBERNETES_VERSION_MANAGEMENT
k8s::prepareKindestImagesVariables
make kind
k8s::prepareKindestImages

set +x

# Make tests run in-parallel
export GINKGO_NODES=5

Expand Down Expand Up @@ -203,14 +218,5 @@ if [[ -z "${GINKGO_FOCUS+x}" ]]; then
fi
fi

# Prepare kindest/node images for all the required Kubernetes version; this implies
# 1. Kubernetes version labels (e.g. latest) to the corresponding version numbers.
# 2. Pre-pulling the corresponding kindest/node image if available; if not, building the image locally.
# Following variables are currently checked (if defined):
# - KUBERNETES_VERSION_MANAGEMENT
k8s::prepareKindestImagesVariables
make kind
k8s::prepareKindestImages

# Run e2e tests
make e2e

0 comments on commit 520d85c

Please sign in to comment.