Skip to content

Commit

Permalink
Bump kubevirtci
Browse files Browse the repository at this point in the history
```
576bc8c kind/podpreset.sh: fix error redirection to stderr (kubevirt/kubevirtci#612)
e86941a kind infra, podpreset: Increase PodPreset enabled validation timeout (kubevirt/kubevirtci#669)
```

Signed-off-by: kubevirt-bot <kubevirtbot@redhat.com>
  • Loading branch information
kubevirt-bot committed Sep 2, 2021
1 parent c9e87c4 commit 383dce8
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cluster-up-sha.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3ac746867e313de0fc266e124c6aa23641b660af
88ef0195fe1769f4cbc562631ae374be8f62254f
6 changes: 4 additions & 2 deletions cluster-up/cluster/kind/podpreset.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ set -e

source ${KUBEVIRTCI_PATH}/cluster/kind/common.sh

VALIDATE_PODPRESET_TIMEOUT="60"

function podpreset::enable_admission_plugin() {
local -r cluster_name=$1

Expand Down Expand Up @@ -38,7 +40,7 @@ EOT
function podpreset::create_virt_launcher_fake_product_uuid_podpreset() {
local -r namespace=$1

if ! _kubectl get ns "$namespace" &>2; then
if ! _kubectl get ns "$namespace" >&2; then
_kubectl create ns "$namespace"
fi

Expand All @@ -50,6 +52,6 @@ function podpreset::expose_unique_product_uuid_per_node() {
local -r namespace=$2

podpreset::enable_admission_plugin "$cluster_name"
podpreset::validate_admission_plugin_is_enabled "$cluster_name" "30"
podpreset::validate_admission_plugin_is_enabled "$cluster_name" "$VALIDATE_PODPRESET_TIMEOUT"
podpreset::create_virt_launcher_fake_product_uuid_podpreset "$namespace"
}
2 changes: 1 addition & 1 deletion cluster-up/hack/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ provider_prefix=${JOB_NAME:-${KUBEVIRT_PROVIDER}}${EXECUTOR_NUMBER}
job_prefix=${JOB_NAME:-kubevirt}${EXECUTOR_NUMBER}

mkdir -p $KUBEVIRTCI_CONFIG_PATH/$KUBEVIRT_PROVIDER
KUBEVIRTCI_TAG=2108301530-82fb30d
KUBEVIRTCI_TAG=2108312024-576bc8c
2 changes: 1 addition & 1 deletion cluster-up/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2108301530-82fb30d
2108312024-576bc8c
2 changes: 1 addition & 1 deletion hack/config-default.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cdi_namespace=cdi
image_pull_policy=${IMAGE_PULL_POLICY:-IfNotPresent}
verbosity=${VERBOSITY:-2}
package_name=${PACKAGE_NAME:-kubevirt-dev}
kubevirtci_git_hash="2108301530-82fb30d"
kubevirtci_git_hash="2108312024-576bc8c"
conn_check_ipv4_address=${CONN_CHECK_IPV4_ADDRESS:-""}
conn_check_ipv6_address=${CONN_CHECK_IPV6_ADDRESS:-""}
conn_check_dns=${CONN_CHECK_DNS:-""}
Expand Down

0 comments on commit 383dce8

Please sign in to comment.