mirror of
https://github.com/kubevirt/containerized-data-importer.git
synced 2025-06-03 06:30:22 +00:00

* Remove a flaky part of the test that didn't add value. Signed-off-by: Alexander Wels <awels@redhat.com> Updated k8s image to latest. Refactored cluster up to allow for adding more providers easily. Signed-off-by: Alexander Wels <awels@redhat.com> * Updated k8s image to latest. Refactored cluster up to allow for adding more providers easily. Enable OKD 4.1 provider Signed-off-by: Alexander Wels <awels@redhat.com>
11 lines
519 B
Bash
11 lines
519 B
Bash
unset docker_prefix master_ip network_provider kubeconfig manifest_docker_prefix
|
|
|
|
KUBEVIRT_PROVIDER=${KUBEVIRT_PROVIDER:-${PROVIDER}}
|
|
|
|
source ${KUBEVIRTCI_PATH}hack/config-default.sh
|
|
|
|
# Allow different providers to override default config values
|
|
test -f "${KUBEVIRTCI_CONFIG_PATH}/$KUBEVIRT_PROVIDER/config-provider-${KUBEVIRT_PROVIDER}.sh" && source ${KUBEVIRTCI_CONFIG_PATH}/$KUBEVIRT_PROVIDER/config-provider-${KUBEVIRT_PROVIDER}.sh
|
|
|
|
export docker_prefix master_ip network_provider kubeconfig manifest_docker_prefix
|