Skip to content

Commit 86b0ce5

Browse files
committed
MTV 2.10.6 Attributes and release notes
1 parent 519196f commit 86b0ce5

12 files changed

+93
-15
lines changed

documentation/doc-Release_notes/master.adoc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ include::modules/common-attributes.adoc[]
1010

1111
include::modules/rn-2-10.adoc[leveloffset=+1]
1212

13-
// Technical changes by x-stream release
14-
//include::modules/technical-changes-2-9.adoc[leveloffset=+2]
13+
// Technical changes by y-stream release
14+
include::modules/technical-changes-2-10.adoc[leveloffset=+2]
1515
//include::modules/upgrade-notes-2.9.adoc[leveloffset=+2]
1616

1717
// New features and enhancements by z-stream release
@@ -22,6 +22,8 @@ include::modules/rn-resolved-issues.adoc[leveloffset=+2]
2222

2323
// Resolved issues by z-stream release
2424

25+
include::modules/rn-2-10-6-resolved-issues.adoc[leveloffset=+3]
26+
2527
include::modules/rn-2-10-5-resolved-issues.adoc[leveloffset=+3]
2628

2729
include::modules/rn-2-10-4-resolved-issues.adoc[leveloffset=+3]

documentation/modules/common-attributes.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
:project-version: 2.10
2323
:mtv-plan: https://docs.redhat.com/en/documentation/migration_toolkit_for_virtualization/{project-version}/html/planning_your_migration_to_red_hat_openshift_virtualization/
2424
:mtv-mig: https://docs.redhat.com/en/documentation/migration_toolkit_for_virtualization/{project-version}/html/migrating_your_virtual_machines_to_red_hat_openshift_virtualization/
25-
:project-z-version: 2.10.5
25+
:project-z-version: 2.10.6
2626
:rhel-first: Red Hat Enterprise Linux (RHEL)
2727
:virt: OpenShift Virtualization
2828
:must-gather: registry.redhat.io/migration-toolkit-virtualization/mtv-must-gather-rhel8:{project-z-version}

documentation/modules/new-features-and-enhancements-2-10.adoc

Lines changed: 40 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,49 @@
22
//
33
// * documentation/doc-Release_notes/master.adoc
44

5-
:_mod-docs-content-type: CONCEPT
5+
:_mod-docs-content-type: REFERENCE
66
[id="new-features-and-enhancements-2-10_{context}"]
77
= New features and enhancements
88

99
[role="_abstract"]
1010
{project-first} 2.10 introduces the following features and enhancements:
1111

12-
* In {project-short} 2.10.1, you can migrate VMs that are running on B-tree file systems (Btrfs) to {virt} with support for OS conversion.
12+
* In {project-short} 2.10.6, you can control nested virtualization behavior during migration with the new `enableNestedVirtualization` option. This option accepts three values:
13+
14+
** Not set (default): Nested virtualization is automatically detected from the source VM and preserved on the target.
15+
** `true`: Force enables nested virtualization on the target VM, regardless of source settings.
16+
** `false`: Force disables nested virtualization on the target VM, regardless of source settings.
17+
+
18+
This option gives you the flexibility to mitigate performance issues stemming from Virtualization Based Security (VBS) activation.
19+
+
20+
By disabling VBS on target VMs during the migration of Windows VMs that do not need nested virtualization, you can avoid potential performance degradation, resulting in a more streamlined and efficient migration process.
21+
+
22+
[NOTE]
23+
====
24+
After you migrate your VMs to {virt}, you can re-enable VBS by running the following YAML:
25+
26+
[source,yaml,subs="attributes+"]
27+
----
28+
apiVersion: kubevirt.io/v1
29+
kind: VirtualMachine
30+
metadata:
31+
name: <vm_name>
32+
spec:
33+
template:
34+
spec:
35+
domain:
36+
cpu:
37+
features:
38+
- name: vmx
39+
policy: optional
40+
- name: svm
41+
policy: optional
42+
----
43+
====
44+
+
45+
link:https://issues.redhat.com/browse/MTV-4698[(MTV-4698)]
46+
47+
* In {project-short} 2.10.1, you can migrate VMs that are running on B-tree file systems (Btrfs) to {virt} with support for operating system conversion.
1348
+
1449
link:https://issues.redhat.com/browse/MTV-2260[(MTV-2260)]
1550
@@ -57,8 +92,8 @@ link:https://issues.redhat.com/browse/MTV-2768[(MTV-2768)]
5792
* In {project-short} 2.10.0, a `PreFlightInspection` during warm migration enables early detection of issues during guest conversion. If an issue is detected, the warm migration fails before VM shutdown, and users can adjust VM settings or skip guest conversion. Potential errors during the `PreFlightInspection` include the following:
5893
+
5994
** Missing LUKS passwords
60-
** Unsupported OS
61-
** Unsupported FS
95+
** Unsupported operating system
96+
** Unsupported file system
6297
+
6398
link:https://issues.redhat.com/browse/MTV-2427[(MTV-2427)]
6499
@@ -70,7 +105,7 @@ link:https://issues.redhat.com/browse/MTV-2427[(MTV-2427)]
70105
+
71106
link:https://issues.redhat.com/browse/MTV-2856[(MTV-2856)]
72107
73-
* *Technology Preview:* In {project-short} 2.10.0, you can live migrate VMs from one OpenShift (OCP) cluster to another, minimizing downtime with the continuous availability of VMs during the migration process. With this update, MTV creates and maps resources from the source to the destination cluster and triggers the live migration, and {virt} CNV migrates the running VM.
108+
* *Technology Preview:* In {project-short} 2.10.0, you can live migrate VMs from one Red Hat OpenShift cluster to another, minimizing downtime with the continuous availability of VMs during the migration process. With this update, MTV creates and maps resources from the source to the destination cluster and triggers the live migration, and {virt} CNV migrates the running VM.
74109
+
75110
link:https://issues.redhat.com/browse/MTV-2040[(MTV-2040)]
76111

documentation/modules/rn-2-10-0-resolved-issues.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// * documentation/doc-Release_notes/master.adoc
44

5-
:_mod-docs-content-type: CONCEPT
5+
:_mod-docs-content-type: REFERENCE
66
[id="resolved-issues-2-10-0_{context}"]
77
= Resolved issues 2.10.0
88

documentation/modules/rn-2-10-1-resolved-issues.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// * documentation/doc-Release_notes/master.adoc
44

5-
:_content-type: CONCEPT
5+
:_mod-docs-content-type: REFERENCE
66
[id="resolved-issues-2-10-1_{context}"]
77
= Resolved issues 2.10.1
88

documentation/modules/rn-2-10-2-resolved-issues.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// * documentation/doc-Release_notes/master.adoc
44

5-
:_content-type: CONCEPT
5+
:_mod-docs-content-type: REFERENCEs
66
[id="resolved-issues-2-10-2_{context}"]
77
= Resolved issues 2.10.2
88

documentation/modules/rn-2-10-3-resolved-issues.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// * documentation/doc-Release_notes/master.adoc
44

5-
:_content-type: CONCEPT
5+
:_mod-docs-content-type: REFERENCE
66
[id="resolved-issues-2-10-3_{context}"]
77
= Resolved issues 2.10.3
88

documentation/modules/rn-2-10-3-security-fixes.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// * documentation/doc-Release_notes/master.adoc
44

5-
:_content-type: CONCEPT
5+
:_mod-docs-content-type: REFERENCE
66
[id="security-fixes-2-10-3_{context}"]
77
= Security fixes 2.10.3
88

documentation/modules/rn-2-10-4-resolved-issues.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// * documentation/doc-Release_notes/master.adoc
44

5-
:_content-type: CONCEPT
5+
:_mod-docs-content-type: REFERENCE
66
[id="resolved-issues-2-10-4_{context}"]
77
= Resolved issues 2.10.4
88

documentation/modules/rn-2-10-5-resolved-issues.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// * documentation/doc-Release_notes/master.adoc
44

5-
:_content-type: CONCEPT
5+
:_mod-docs-content-type: REFERENCE
66
[id="resolved-issues-2-10-5_{context}"]
77
= Resolved issues 2.10.5
88

0 commit comments

Comments
 (0)