Skip to content

Commit

Permalink
UPSTREAM: <carry>: Do not ignore parameters for ocp tests
Browse files Browse the repository at this point in the history
This commit fixes the issue that provided parameters for the ocp e2e
test targets would have been ignored. For example in case the
IMAGE_BUILDER was set to docker, this would have been ignored and is
fixed now.

Signed-off-by: Christoph Stäbler <cstabler@redhat.com>
(cherry picked from commit 322cf1f)
(cherry picked from commit 4b330ef)
(cherry picked from commit bcb43a6)
(cherry picked from commit 8b9e18c)
(cherry picked from commit 2f12709)
(cherry picked from commit ea1dff5)
(cherry picked from commit f53e9ce)
Signed-off-by: Douglas Schilling Landgraf <dougsland@redhat.com>
  • Loading branch information
creydr authored and dougsland committed Feb 9, 2023
1 parent 5524650 commit 5d4b8bb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions hack/ocp-e2e-tests-handler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
set -ex

export KUBEVIRT_PROVIDER=external
export IMAGE_BUILDER=podman
export DEV_IMAGE_REGISTRY=quay.io
export KUBEVIRTCI_RUNTIME=podman
export IMAGE_BUILDER="${IMAGE_BUILDER:-podman}"
export DEV_IMAGE_REGISTRY="${DEV_IMAGE_REGISTRY:-quay.io}"
export KUBEVIRTCI_RUNTIME="${KUBEVIRTCI_RUNTIME:-podman}"
export PRIMARY_NIC=enp2s0
export FIRST_SECONDARY_NIC=enp3s0
export SECOND_SECONDARY_NIC=enp4s0
Expand Down
6 changes: 3 additions & 3 deletions hack/ocp-e2e-tests-operator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
set -ex

export KUBEVIRT_PROVIDER=external
export IMAGE_BUILDER=podman
export DEV_IMAGE_REGISTRY=quay.io
export KUBEVIRTCI_RUNTIME=podman
export IMAGE_BUILDER="${IMAGE_BUILDER:-podman}"
export DEV_IMAGE_REGISTRY="${DEV_IMAGE_REGISTRY:-quay.io}"
export KUBEVIRTCI_RUNTIME="${KUBEVIRTCI_RUNTIME:-podman}"

make cluster-sync-operator
make test-e2e-operator

0 comments on commit 5d4b8bb

Please sign in to comment.