mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
50 lines
3.2 KiB
Plaintext
50 lines
3.2 KiB
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * hosted_control_planes/hcp-deploy-virt.adoc
|
|
|
|
:_mod-docs-content-type: CONCEPT
|
|
[id="hcp-virt-live-migration_{context}"]
|
|
= Live migration for compute nodes
|
|
|
|
While the management cluster for hosted cluster virtual machines (VMs) is undergoing updates or maintenance, the hosted cluster VMs can be automatically live migrated to prevent disrupting hosted cluster workloads. As a result, the management cluster can be updated without affecting the availability and operation of the KubeVirt platform hosted clusters.
|
|
|
|
[IMPORTANT]
|
|
====
|
|
The live migration of KubeVirt VMs is enabled by default provided that the VMs use `ReadWriteMany` (RWX) storage for both the root volume and the storage classes that are mapped to the `kubevirt-csi` CSI provider.
|
|
====
|
|
|
|
You can verify that the VMs in a node pool are capable of live migration by checking the `KubeVirtNodesLiveMigratable` condition in the `status` section of a `NodePool` object.
|
|
|
|
In the following example, the VMs cannot be live migrated because RWX storage is not used.
|
|
|
|
.Example configuration where VMs cannot be live migrated
|
|
[source,yaml]
|
|
----
|
|
- lastTransitionTime: "2024-10-08T15:38:19Z"
|
|
message: |
|
|
3 of 3 machines are not live migratable
|
|
Machine user-np-ngst4-gw2hz: DisksNotLiveMigratable: user-np-ngst4-gw2hz is not a live migratable machine: cannot migrate VMI: PVC user-np-ngst4-gw2hz-rhcos is not shared, live migration requires that all PVCs must be shared (using ReadWriteMany access mode)
|
|
Machine user-np-ngst4-npq7x: DisksNotLiveMigratable: user-np-ngst4-npq7x is not a live migratable machine: cannot migrate VMI: PVC user-np-ngst4-npq7x-rhcos is not shared, live migration requires that all PVCs must be shared (using ReadWriteMany access mode)
|
|
Machine user-np-ngst4-q5nkb: DisksNotLiveMigratable: user-np-ngst4-q5nkb is not a live migratable machine: cannot migrate VMI: PVC user-np-ngst4-q5nkb-rhcos is not shared, live migration requires that all PVCs must be shared (using ReadWriteMany access mode)
|
|
observedGeneration: 1
|
|
reason: DisksNotLiveMigratable
|
|
status: "False"
|
|
type: KubeVirtNodesLiveMigratable
|
|
----
|
|
|
|
In the next example, the VMs meet the requirements to be live migrated.
|
|
|
|
.Example configuration where VMs can be live migrated
|
|
[source,yaml]
|
|
----
|
|
- lastTransitionTime: "2024-10-08T15:38:19Z"
|
|
message: "All is well"
|
|
observedGeneration: 1
|
|
reason: AsExpected
|
|
status: "True"
|
|
type: KubeVirtNodesLiveMigratable
|
|
----
|
|
|
|
While live migration can protect VMs from disruption in normal circumstances, events such as infrastructure node failure can result in a hard restart of any VMs that are hosted on the failed node. For live migration to be successful, the source node that a VM is hosted on must be working correctly.
|
|
|
|
When the VMs in a node pool cannot be live migrated, workload disruption might occur on the hosted cluster during maintenance on the management cluster. By default, the {hcp} controllers try to drain the workloads that are hosted on KubeVirt VMs that cannot be live migrated before the VMs are stopped. Draining the hosted cluster nodes before stopping the VMs allows pod disruption budgets to protect workload availability within the hosted cluster. |