We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62f1f21 commit 95b6ca5Copy full SHA for 95b6ca5
contrib/kind-common
@@ -324,7 +324,11 @@ install_kubevirt() {
324
# vX.Y.Z - install specific stable (i.e v1.3.1)
325
# nightly - install newest nightly
326
# nightly tag - install specific nightly (i.e 20240910)
327
- KUBEVIRT_VERSION=${KUBEVIRT_VERSION:-"stable"}
+ # KUBEVIRT_VERSION=${KUBEVIRT_VERSION:-"stable"}
328
+
329
+ # FIXME: kubevirt v1.5.0 is breaking live migration tcp connections at
330
+ # at e2e tests, this pin to v1.4.0 wich is known to work
331
+ KUBEVIRT_VERSION=${KUBEVIRT_VERSION:-"v1.4.0"}
332
333
for node in $(kubectl get node --no-headers -o custom-columns=":metadata.name"); do
334
$OCI_BIN exec -t $node bash -c "echo 'fs.inotify.max_user_watches=1048576' >> /etc/sysctl.conf"
0 commit comments