Questo contenuto non è disponibile nella lingua selezionata.
Chapter 5. Migrating virtual machines from the command line
You can migrate virtual machines to OpenShift Virtualization from the command line.
- VMware only: You must have the minimal set of VMware privileges.
- VMware only: You must have the vCenter SHA-1 fingerprint.
- VMware only: Creating a VMware Virtual Disk Development Kit (VDDK) image will increase migration speed.
- You must ensure that all prerequisites are met.
5.1. Permissions needed by non-administrators to work with migration plan components Copia collegamentoCollegamento copiato negli appunti!
If you are an administrator, you can work with all components of migration plans (for example, providers, network mappings, and migration plans).
By default, non-administrators have limited ability to work with migration plans and their components. As an administrator, you can modify their roles to allow them full access to all components, or you can give them limited permissions.
For example, administrators can assign non-administrators one or more of the following cluster roles for migration plans:
Role | Description |
---|---|
| Can view migration plans but not to create, delete or modify them |
|
Can create, delete or modify (all parts of |
|
All |
Note that pre-defined cluster roles include a resource (for example, plans
), an API group (for example, forklift.konveyor.io-v1beta1
) and an action (for example, view
, edit
).
As a more comprehensive example, you can grant non-administrators the following set of permissions per namespace:
- Create and modify storage maps, network maps, and migration plans for the namespaces they have access to
- Attach providers created by administrators to storage maps, network maps, and migration plans
- Not be able to create providers or to change system settings
Actions | API group | Resource |
---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Non-administrators need to have the create
permissions that are part of edit
roles for network maps and for storage maps to create migration plans, even when using a template for a network map or a storage map.
5.2. Retrieving a VMware vSphere moRef Copia collegamentoCollegamento copiato negli appunti!
When you migrate VMs with a VMware vSphere source provider using Migration Toolkit for Virtualization (MTV) from the CLI, you need to know the managed object reference (moRef) of certain entities in vSphere, such as datastores, networks, and VMs.
You can retrieve the moRef of one or more vSphere entities from the Inventory service. You can then use each moRef as a reference for retrieving the moRef of another entity.
Procedure
Retrieve the routes for the project:
oc get route -n openshift-mtv
oc get route -n openshift-mtv
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Retrieve the
Inventory
service route:oc get route <inventory_service> -n openshift-mtv
$ oc get route <inventory_service> -n openshift-mtv
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Retrieve the access token:
TOKEN=$(oc whoami -t)
$ TOKEN=$(oc whoami -t)
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Retrieve the moRef of a VMware vSphere provider:
curl -H "Authorization: Bearer $TOKEN" https://<inventory_service_route>/providers/vsphere -k
$ curl -H "Authorization: Bearer $TOKEN" https://<inventory_service_route>/providers/vsphere -k
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Retrieve the datastores of a VMware vSphere source provider:
curl -H "Authorization: Bearer $TOKEN" https://<inventory_service_route>/providers/vsphere/<provider id>/datastores/ -k
$ curl -H "Authorization: Bearer $TOKEN" https://<inventory_service_route>/providers/vsphere/<provider id>/datastores/ -k
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Example output
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
In this example, the moRef of the datastore v2v_general_porpuse_ISCSI_DC
is datastore-11
and the moRef of the datastore f01-h27-640-SSD_2
is datastore-730
.
5.3. Migrating virtual machines Copia collegamentoCollegamento copiato negli appunti!
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.
Migration using one or more Open Virtual Appliance (OVA) files as a source provider is a Technology Preview.
Migration using one or more Open Virtual Appliance (OVA) files as a source provider is a Technology Preview feature only. Technology Preview features are not supported with Red Hat production service level agreements (SLAs) and might not be functionally complete. Red Hat does not recommend using them in production. These features provide early access to upcoming product features, enabling customers to test functionality and provide feedback during the development process.
For more information about the support scope of Red Hat Technology Preview features, see https://access.redhat.com/support/offerings/techpreview/.
Migration using OpenStack source providers only supports VMs that use only Cinder volumes.
Prerequisites
- VMware only: You must have a VMware Virtual Disk Development Kit (VDDK) image in a secure registry that is accessible to all clusters.
- Red Hat Virtualization (RHV) only: If you are migrating a virtual machine with a direct LUN disk, ensure that the nodes in the OpenShift Virtualization destination cluster that the VM is expected to run on can access the backend storage.
- Unlike disk images that are copied from a source provider to a target provider, LUNs are detached, but not removed, from virtual machines in the source provider and then attached to the virtual machines (VMs) that are created in the target provider.
- LUNs are not removed from the source provider during the migration in case fallback to the source provider is required. However, before re-attaching the LUNs to VMs in the source provider, ensure that the LUNs are not used by VMs on the target environment at the same time, which might lead to data corruption.
- Migration of Fibre Channel LUNs is not supported.
Procedure
Create a
Secret
manifest for the source provider credentials:Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- The
ownerReferences
section is optional. - 2
- Specify the type of source provider. Allowed values are
ovirt
,vsphere
,openstack
,ova
, andopenshift
. This label is needed to verify the credentials are correct when the remote system is accessible and, for RHV, to retrieve the Manager CA certificate when a third-party certificate is specified. - 3
- The
stringData
section for OVA is different and is described in a note that follows the description of theSecret
manifest. - 4
- Specify the vCenter user, the RHV Manager user, or the OpenStack user.
- 5
- Specify the user password.
- 6
- Specify
<true>
to skip certificate verification, which proceeds with an insecure migration and then the certificate is not required. Insecure migration means that the transferred data is sent over an insecure connection and potentially sensitive data could be exposed. Specifying<false>
verifies the certificate. - 7
- OpenStack only: Specify the domain name.
- 8
- OpenStack only: Specify the project name.
- 9
- OpenStack only: Specify the name of the OpenStack region.
- 10
- RHV and OpenStack only: For RHV, enter the Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate. You can retrieve the Manager CA certificate at https://<engine_host>/ovirt-engine/services/pki-resource?resource=ca-certificate&format=X509-PEM-CA. For OpenStack, enter the CA certificate for connecting to the source environment. The certificate is not used when
insecureSkipVerify
is set to<true>
. - 11
- Specify the API end point URL, for example,
https://<vCenter_host>/sdk
for vSphere,https://<engine_host>/ovirt-engine/api
for RHV, orhttps://<identity_service>/v3
for OpenStack. - 12
- VMware only: Specify the vCenter SHA-1 fingerprint.
- 13
- OpenShift only: Token for a service account with
cluster-admin
privileges.
NoteThe
stringData
section for an OVASecret
manifest is as follows:stringData: url: <nfs_server:/nfs_path>
stringData: url: <nfs_server:/nfs_path>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow where:
nfs_server
: An IP or hostname of the server where the share was created.nfs_path
: The path on the server where the OVA files are stored.Create a
Provider
manifest for the source provider:Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- Specify the type of source provider. Allowed values are
ovirt
,vsphere
,openstack
,ova
, andopenshift
. - 2
- Specify the API end point URL, for example,
https://<vCenter_host>/sdk
for vSphere,https://<engine_host>/ovirt-engine/api
for RHV, orhttps://<identity_service>/v3
for OpenStack. - 3
- VMware only: Specify the VDDK image that you created.
- 4
- Specify the name of provider
Secret
CR.
VMware only: Create a
Host
manifest:Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- Specify the name of the VMware
Provider
CR. - 2
- Specify the managed object reference (moRef) of the VMware host. To retrieve the moRef, see Retrieving a VMware vSphere moRef.
- 3
- Specify the IP address of the VMware migration network.
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 moRef, the RHV network UUID, or the OpenStack network UUID. To retrieve the moRef, see Retrieving a VMware vSphere moRef.
- 4
- Specify a network attachment definition for each additional OpenShift Virtualization network.
- 5
- Required only when
type
ismultus
. Specify the namespace of the OpenShift Virtualization network attachment definition. - 6
- Specify a network attachment definition for each additional OpenShift Virtualization network.
- 7
- Required only when
type
ismultus
. Here,namespace
can either be specified using the namespace property or with a name built as follows:<network_namespace>/<network_name>
. - 8
- OpenShift only.
Create a
StorageMap
manifest to map source and destination storage:Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- Allowed values are
ReadWriteOnce
andReadWriteMany
. - 2
- Specify the VMware datastore moRef, the RHV storage domain UUID, or the OpenStack
volume_type
UUID. For example,f2737930-b567-451a-9ceb-2887f6207009
. To retrieve the moRef, see Retrieving a VMware vSphere moRef.
NoteFor OVA, the
StorageMap
can map only a single storage, which all the disks from the OVA are associated with, to a storage class at the destination. For this reason, the storage is referred to in the UI as "Dummy storage for source provider <provider_name>".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
- Specify only one network map and one storage map per plan.
- 4
- Specify a network mapping even if the VMs to be migrated are not assigned to a network. The mapping can be empty in this case.
- 5
- Specify the name of the
NetworkMap
CR. - 6
- Specify a storage mapping even if the VMs to be migrated are not assigned with disk images. The mapping can be empty in this case.
- 7
- Specify the name of the
StorageMap
CR. - 8
- For all source providers except for OpenShift Virtualization, you can use either the
id
or thename
parameter to specify the source VMs.
OpenShift Virtualization source provider only: You can use only thename
parameter, not theid.
parameter to specify the source VMs. - 9
- Specify the VMware VM moRef, RHV VM UUID or the OpenStack VM UUID. To retrieve the moRef, see Retrieving a VMware vSphere moRef.
- 10
- OpenShift Virtualization source provider only.
- 11
- Optional: You can specify up to two hooks for a VM. Each hook must run during a separate migration step.
- 12
- Specify the name of the
Hook
CR. - 13
- Allowed values are
PreHook
, before the migration 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 <namespace> -o yaml
$ oc get migration/<migration> -n <namespace> -o yaml
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
5.4. Obtaining the SHA-1 fingerprint of a vCenter host Copia collegamentoCollegamento copiato negli appunti!
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.5. Canceling a migration Copia collegamentoCollegamento copiato negli appunti!
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 <namespace>
$ oc delete migration <migration> -n <namespace>
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 <namespace> -o yaml
$ oc get migration/<migration> -n <namespace> -o yaml
Copy to Clipboard Copied! Toggle word wrap Toggle overflow