Skip to content

Commit

Permalink
fix: revert kubevirt version back to v0.58.0
Browse files Browse the repository at this point in the history
Kubevirt v0.58.1 and 0.59.0-rc.0 probably contains bug, which is causing
that windows vm is in pending state. The virt-launcher is in unschedulable
state (probably due to TSC node selector). Test lanes, which are testing
example pipelines are failing due to that issue. Reverting kubevirt
version back will fix the test lanes, until the issue is fixed in
kubevirt project.
Signed-off-by: Karel Šimon <[email protected]>
  • Loading branch information
ksimon1 committed Feb 16, 2023
1 parent 46c0076 commit c891a17
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/deploy-resources.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ if oc get namespace tekton-pipelines > /dev/null 2>&1; then
exit 0
fi

KUBEVIRT_VERSION=$(curl -s https://api.github.com/repos/kubevirt/kubevirt/releases | \
jq '.[] | select(.prerelease==false) | .tag_name' | sort -V | tail -n1 | tr -d '"')
KUBEVIRT_VERSION="v0.58.0"
#$(curl -s https://api.github.com/repos/kubevirt/kubevirt/releases | \
# jq '.[] | select(.prerelease==false) | .tag_name' | sort -V | tail -n1 | tr -d '"')

CDI_VERSION=$(curl -s https://api.github.com/repos/kubevirt/containerized-data-importer/releases | \
jq '.[] | select(.prerelease==false) | .tag_name' | sort -V | tail -n1 | tr -d '"')
Expand Down

0 comments on commit c891a17

Please sign in to comment.