Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
Chapter 5. Migrating virtual machines from the command line
You can migrate virtual machines to OpenShift Virtualization from the command line.
-
You must be logged in as a user with
cluster-admin
privileges. - VMware only: You must have the minimal set of VMware privileges.
- VMware only: You must have the vCenter SHA-1 fingerprint.
- VMware only: You must create a VMware Virtual Disk Development Kit (VDDK) image.
- You must ensure that all prerequisites are met.
5.1. Migrating virtual machines Link kopierenLink in die Zwischenablage kopiert!
You migrate virtual machines (VMs) from the command line (CLI) by creating MTV custom resources (CRs).
You must specify a name for cluster-scoped CRs.
You must specify both a name and a namespace for namespace-scoped CRs.
Prerequisites
-
You must be logged in as a user with
cluster-admin
privileges. - VMware only: You must have a VMware Virtual Disk Development Kit (VDDK) image in a secure registry that is accessible to all clusters.
Procedure
Create a
Secret
manifest for the source provider credentials:Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- Specify the vCenter user or the RHV Manager user.
- 2
- Specify the user password.
- 3
- RHV only: Specify the CA certificate of the Manager. You can retrieve it at
https://<engine_host>/ovirt-engine/services/pki-resource?resource=ca-certificate&format=X509-PEM-CA
. - 4
- VMware only: Specify the vCenter SHA-1 fingerprint.
Create a
Provider
manifest for the source provider:Copy to Clipboard Copied! Toggle word wrap Toggle overflow VMware only: Create a
Host
manifest:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create a
NetworkMap
manifest to map the source and destination networks:Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- Allowed values are
pod
andmultus
. - 2
- You can use either the
id
or thename
parameter to specify the source network. - 3
- Specify the VMware network MOR or RHV network UUID.
- 4
- Specify a network attachment definition for each additional OpenShift Virtualization network.
- 5
- Specify the namespace of the OpenShift Virtualization network attachment definition.
Create a
StorageMap
manifest to map source and destination storage:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Optional: Create a
Hook
manifest to run custom code on a VM during the phase specified in thePlan
CR:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create a
Plan
manifest for the migration:Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- Specify the name of the
Plan
CR. - 2
- Specify whether the migration is warm or cold. If you specify a warm migration without specifying a value for the
cutover
parameter in theMigration
manifest, only the precopy stage will run. - 3
- You can add multiple network mappings.
- 4
- Specify the name of the
NetworkMap
CR. - 5
- Specify the name of the
StorageMap
CR. - 6
- You can use either the
id
or thename
parameter to specify the source VMs. - 7
- Specify the VMware VM MOR or RHV VM UUID.
- 8
- Optional: You can specify up to two hooks for a VM. Each hook must run during a separate migration step.
- 9
- Specify the name of the
Hook
CR. - 10
- Allowed values are
PreHook
, before the migation plan starts, orPostHook
, after the migration is complete.
Create a
Migration
manifest to run thePlan
CR:Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- Specify the name of the
Migration
CR. - 2
- Specify the name of the
Plan
CR that you are running. TheMigration
CR creates aVirtualMachine
CR for each VM that is migrated. - 3
- Optional: Specify a cutover time according to the ISO 8601 format with the UTC time offset, for example,
2021-04-04T01:23:45.678+09:00
.
You can associate multiple
Migration
CRs with a singlePlan
CR. If a migration does not complete, you can create a newMigration
CR, without changing thePlan
CR, to migrate the remaining VMs.Retrieve the
Migration
CR to monitor the progress of the migration:oc get migration/<migration> -n openshift-mtv -o yaml
$ oc get migration/<migration> -n openshift-mtv -o yaml
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
5.2. Obtaining the SHA-1 fingerprint of a vCenter host Link kopierenLink in die Zwischenablage kopiert!
You must obtain the SHA-1 fingerprint of a vCenter host in order to create a Secret
CR.
Procedure
Run the following command:
openssl s_client \ -connect <vcenter_host>:443 \ < /dev/null 2>/dev/null \ | openssl x509 -fingerprint -noout -in /dev/stdin \ | cut -d '=' -f 2
$ openssl s_client \ -connect <vcenter_host>:443 \
1 < /dev/null 2>/dev/null \ | openssl x509 -fingerprint -noout -in /dev/stdin \ | cut -d '=' -f 2
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- Specify the IP address or FQDN of the vCenter host.
Example output
01:23:45:67:89:AB:CD:EF:01:23:45:67:89:AB:CD:EF:01:23:45:67
01:23:45:67:89:AB:CD:EF:01:23:45:67:89:AB:CD:EF:01:23:45:67
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
5.3. Canceling a migration Link kopierenLink in die Zwischenablage kopiert!
You can cancel an entire migration or individual virtual machines (VMs) while a migration is in progress from the command line interface (CLI).
Canceling an entire migration
Delete the
Migration
CR:oc delete migration <migration> -n openshift-mtv
$ oc delete migration <migration> -n openshift-mtv
1 Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- Specify the name of the
Migration
CR.
Canceling the migration of individual VMs
Add the individual VMs to the
spec.cancel
block of theMigration
manifest:Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- You can specify a VM by using the
id
key or thename
key.
The value of the
id
key is the managed object reference, for a VMware VM, or the VM UUID, for a RHV VM.Retrieve the
Migration
CR to monitor the progress of the remaining VMs:oc get migration/<migration> -n openshift-mtv -o yaml
$ oc get migration/<migration> -n openshift-mtv -o yaml
Copy to Clipboard Copied! Toggle word wrap Toggle overflow