forked from kubevirt/kubevirt
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kubevirt#6182 from jordigilh/poc_cnv_rt_locked_field
Enhance support for real time workloads
- Loading branch information
Showing
48 changed files
with
1,069 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# This file is part of the KubeVirt project | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
# Copyright 2021 Red Hat, Inc. | ||
# | ||
# This script should be executed through the makefile via `make perftest`. | ||
|
||
set -e | ||
|
||
DOCKER_TAG=${DOCKER_TAG:-devel} | ||
DOCKER_TAG_ALT=${DOCKER_TAG_ALT:-devel_alt} | ||
|
||
source hack/common.sh | ||
source hack/config.sh | ||
|
||
_default_previous_release_registry="quay.io/kubevirt" | ||
|
||
previous_release_registry=${PREVIOUS_RELEASE_REGISTRY:-$_default_previous_release_registry} | ||
|
||
perftest_docker_prefix=${manifest_docker_prefix-${docker_prefix}} | ||
|
||
if [[ ${KUBEVIRT_PROVIDER} == os-* ]] || [[ ${KUBEVIRT_PROVIDER} =~ (okd|ocp)-* ]]; then | ||
oc=${kubectl} | ||
fi | ||
|
||
if [ -z "$kubeconfig" ]; then | ||
kubeconfig="$KUBECONFIG" | ||
fi | ||
|
||
echo 'Preparing directory for artifacts' | ||
export ARTIFACTS=${ARTIFACTS}/performance | ||
rm -rf $ARTIFACTS | ||
mkdir -p $ARTIFACTS | ||
|
||
export TESTS_OUT_DIR=${TESTS_OUT_DIR} | ||
mkdir -p ${TESTS_OUT_DIR}/performance | ||
|
||
echo 'ARTIFACTS ' ${ARTIFACTS} | ||
echo 'TESTS_OUT_DIR ' ${TESTS_OUT_DIR} | ||
|
||
function perftest() { | ||
_out/tests/ginkgo -r --slowSpecThreshold 60 $@ _out/tests/tests.test -- ${extra_args} -kubeconfig=${kubeconfig} -container-tag=${docker_tag} -container-tag-alt=${docker_tag_alt} -container-prefix=${perftest_docker_prefix} -image-prefix-alt=${image_prefix_alt} -oc-path=${oc} -kubectl-path=${kubectl} -gocli-path=${gocli} -installed-namespace=${namespace} -previous-release-tag=${PREVIOUS_RELEASE_TAG} -previous-release-registry=${previous_release_registry} -deploy-testing-infra=${deploy_testing_infra} -config=${KUBEVIRT_DIR}/tests/default-config.json --artifacts=${ARTIFACTS} | ||
} | ||
|
||
if [ -n "$KUBEVIRT_E2E_FOCUS" ]; then | ||
export KUBEVIRT_E2E_FOCUS="${KUBEVIRT_E2E_FOCUS}|\\[sig-performance\\]" | ||
else | ||
export KUBEVIRT_E2E_FOCUS="\\[sig-performance\\]" | ||
fi | ||
|
||
additional_test_args="" | ||
if [ -n "$KUBEVIRT_E2E_SKIP" ]; then | ||
additional_test_args="${additional_test_args} --skip=${KUBEVIRT_E2E_SKIP}" | ||
fi | ||
|
||
if [ -n "$KUBEVIRT_E2E_FOCUS" ]; then | ||
additional_test_args="${additional_test_args} --focus=${KUBEVIRT_E2E_FOCUS}" | ||
fi | ||
|
||
additional_test_args="${additional_test_args} --skipPackage test/performance" | ||
|
||
perftest ${additional_test_args} ${FUNC_TEST_ARGS} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.