From d67813eb39efc427afe3e7c717d0d9cdae34c03e Mon Sep 17 00:00:00 2001 From: Marcelo Fukumoto Date: Wed, 27 May 2026 14:35:47 +0200 Subject: [PATCH] feat(forklift): Removed wrong configs used for testing Signed-off-by: Marcelo Fukumoto --- forklift | 264 - package.json | 4 +- pkg/harvester/utils/datastores.json | 272 - pkg/harvester/utils/networks.json | 332 - pkg/harvester/utils/vms.json | 14275 -------------------------- pkg/harvester/vue.config.js | 19 +- vue.config.js | 19 +- 7 files changed, 5 insertions(+), 15180 deletions(-) delete mode 100644 forklift delete mode 100644 pkg/harvester/utils/datastores.json delete mode 100644 pkg/harvester/utils/networks.json delete mode 100644 pkg/harvester/utils/vms.json diff --git a/forklift b/forklift deleted file mode 100644 index f7ca66d1..00000000 --- a/forklift +++ /dev/null @@ -1,264 +0,0 @@ -# Forklift Addon - -## Summary - -This enhancement details the changes needed to include [forklift](https://github.com/kubev2v/forklift) as a Harvester addon. - -The addon can be used as an alternate option for performing vm migrations from vmware. - -### Related Issues - -https://github.com/harvester/harvester/issues/9588 - -## Motivation -forklift is a tool similar to vm-import-controller which allows users to migrate VM based workloads from platforms such as vmware and openstack to Harvester. forklift has the added advantage of support [vsphere-xcopy](https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/7-0/vsphere-storage/storage-hardware-acceleration-in-vsphere/vsphere-hardware-acceleration-on-block-storage/managing-hardware-acceleration-filter-and-plug-ins/configure-xcopy-parameters.html) based plugins. When used in conjuction with supported storage arrays that are being shared across both vmware and Harvester installations, the plugin offloads the disk clone operation to the storage array. This allows the data to be populated in the kubernetes pvc directly from the vsphere datastore. This speeds up the data migration as the compute and network layer for both vsphere and Harvester components are skipped. - -### Goals - -- Addon to allow users to enable/disable the forklift addon on a Harvester cluster -- Allow migration of VM's from vsphere to Harvester using forklift - -### Non-goals [optional] - -- QA of individual vsphere-xcopy plugins - -## Proposal - -This is where we get down to the nitty gritty of what the proposal actually is. - -### User Stories - -#### Story 1: Migration VirtualMachines from vmware to Harvester -As a user I wish to migration my existing VM workloads from vmware to Harvester. - -### User Experience In Detail - -A user can trigger a migration of VM from vmware to Harvester by following the listed steps: - -##### create a provider -```yaml -apiVersion: v1 -kind: Secret -metadata: - name: vmware-secret - namespace: default - labels: - createdForProviderType: vsphere - createdForResourceType: providers -type: Opaque -stringData: - user: "username" - password: "password" - insecureSkipVerify: "true" - url: "https://vcenter/sdk" ---- -apiVersion: forklift.konveyor.io/v1beta1 -kind: Provider -metadata: - name: vmware-source - namespace: default -spec: - type: vsphere - url: "https://mako-vcenter.devlab.pgu1.suse.com/sdk" - secret: - name: vmware-secret - namespace: default ---- -apiVersion: forklift.konveyor.io/v1beta1 -kind: Provider -metadata: - name: local - namespace: default -spec: - type: openshift - secret: {} -``` - -##### create a network map defining mapping of vmware networks to Harvester vm networks -```yaml -apiVersion: forklift.konveyor.io/v1beta1 -kind: NetworkMap -metadata: - name: vsphere-network-map - namespace: default -spec: - map: - - destination: - type: pod - source: - id: dvportgroup-13025 - provider: - destination: - apiVersion: forklift.konveyor.io/v1beta1 - kind: Provider - name: local - namespace: default - source: - apiVersion: forklift.konveyor.io/v1beta1 - kind: Provider - name: vmware-source - namespace: default -``` - -##### create a storage map defining mapping of vmware storage to Harvester storage class -```yaml -apiVersion: forklift.konveyor.io/v1beta1 -kind: StorageMap -metadata: - name: vsphere-storage-map - namespace: default -spec: - map: - - destination: - storageClass: longhorn-v2 - source: - id: datastore-2040 - provider: - destination: - apiVersion: forklift.konveyor.io/v1beta1 - kind: Provider - name: local - namespace: default - source: - apiVersion: forklift.konveyor.io/v1beta1 - kind: Provider - name: vmware-source - namespace: default -``` - -##### create a migration plan which details steps be carried out for a list of VMs in question -```yaml -apiVersion: forklift.konveyor.io/v1beta1 -kind: Plan -metadata: - annotations: - populatorLabels: 'True' - name: vmware-gm-ubuntu-test-migration - namespace: default -spec: - map: - network: - apiVersion: forklift.konveyor.io/v1beta1 - kind: NetworkMap - name: vsphere-network-map - namespace: default - storage: - apiVersion: forklift.konveyor.io/v1beta1 - kind: StorageMap - name: vsphere-storage-map - namespace: default - migrateSharedDisks: true - provider: - destination: - apiVersion: forklift.konveyor.io/v1beta1 - kind: Provider - name: local - namespace: default - source: - apiVersion: forklift.konveyor.io/v1beta1 - kind: Provider - name: vmware-source - namespace: default - targetNamespace: default - vms: - - id: vm-13007 - name: gm-ubuntu-test -``` - -##### trigger the vm migration -```yaml -kind: Migration -metadata: - name: vmware-gm-ubuntu-test-migration - namespace: default -spec: - plan: - name: vmware-gm-ubuntu-test-migration - namespace: default -``` - - -Once the migration is successful the VM's listed in the plan will have been migrated to the Harvester - -### API changes -There are no API changes in core Harvester itself. - -Enabling the Addon will create the following CRDs on the Harvester cluster: -* forkliftcontrollers.forklift.konveyor.io -* hooks.forklift.konveyor.io -* hosts.forklift.konveyor.io -* migrations.forklift.konveyor.io -* networkmaps.forklift.konveyor.io -* openstackvolumepopulators.forklift.konveyor.io -* ovirtvolumepopulators.forklift.konveyor.io -* plans.forklift.konveyor.io -* providers.forklift.konveyor.io -* storagemaps.forklift.konveyor.io -* vspherexcopyvolumepopulators.forklift.konveyor.io - -## Design - -### Implementation Overview -Implementation requires two main tasks: - -* repackaging of forklift components using SLE BCL base images -* packaging of forklift-operator as a helm chart. Upstream this is managed by [OLM](https://olm.operatorframework.io/) - -We are going to skip the introduction of OLM to Harvester as we have our own AppCo and Helm based component delivery mechanism. OLM ties will with `operator-sdk` which we do not leverage, as core Harvester capability leverages the rancher wrangler framework. - -The [repo](https://github.com/ibrokethecloud/forklift-packaging) already contains the tooling to repackage and publish all forklift components using SLE BCL or Opensuse images. - - -The forklift addon will be leveraging the forklift-operator, which will be packaged as a vanilla helm chart. This will allow users to enable / disable the addon as per their needs. - -Once the addon is enabled, the users will need to create a `ForkliftController` CR to trigger the installation of forklift components - -```yaml -apiVersion: forklift.konveyor.io/v1beta1 -kind: ForkliftController -metadata: - name: forklift-controller - namespace: forklift -spec: - feature_ui_plugin: "false" -``` - -The creation of the `ForkliftController` CR will trigger the following deployments - -``` -NAME READY UP-TO-DATE AVAILABLE AGE -forklift-api 1/1 1 1 10d -forklift-controller 1/1 1 1 10d -forklift-operator-forklift-operator-ansible 1/1 1 1 10d -forklift-validation 1/1 1 1 10d -forklift-volume-populator-controller 1/1 1 1 10d -``` - -#### harvester-webhook changes -Forklift controller runs the migration pod with the default seccomp profile. This stops the actual virt-v2v converstion from completing successfully. The Harvester webhook needs a change to patch the migration pod to provide it priveleged permissions to allow successful conversion. - -The harvester-webhook will also patch the migration pod's `ImagePullPolicy` from `Always` to `IfNotPresent` to ensure simpler operation in air-gapped environments. - - -### Test plan - -* Enable forklift addon -* Create a `ForkliftController` CR -* Once forklift components have been installed, trigger a VM migration from vmware to forklift by using the sample available earlier in the HEP -* The VM should migrate successfully - -### Upgrade strategy - -No specific upgrade enhancement is needed. The addon will be upgrade as part of the Harvester upgrade process. - -## Note [optional] - -* forklift-operator needs [cert-manager ](https://cert-manager.io/). Users will need to manually install cert-manager from `AppCo` or upstream to ensure the forklift components can be initialised successfully by the operator - -* forklift leverages [vddk images](https://docs.redhat.com/en/documentation/migration_toolkit_for_virtualization/2.0/html/installing_and_using_the_migration_toolkit_for_virtualization/installing-mtv_mtv#adding-vddk-to-mtv_mtv) which is a proprietary package. We cannot packaging this in our distribution, and users will need to manually build and host this image in their environment to leverage vddk based migration capabilities - -* QA has no way to validate vmware-xcopy based plugin capabilities. We may need to leverage vendor relationships to QA and validate the same - -* Forklift also introduces [OPA](https://v0-12-2--opa-docs.netlify.app/kubernetes-admission-control/) to run its validation layer. - -* A mutating webhook is needed in [harvester-webhook](https://github.com/harvester/harvester/pull/9935) to mutate virt-v2v pods being created by forklift to have privileged escalation. This is to ensure passt interface can initialise successfully inside the pod, to allow for subsequent vm conversion. \ No newline at end of file diff --git a/package.json b/package.json index 75c46864..e04845fd 100644 --- a/package.json +++ b/package.json @@ -14,9 +14,9 @@ "@vue-flow/minimap": "^1.4.0", "cache-loader": "^4.1.0", "color": "4.2.3", - "elkjs": "^0.11.0", "ip": "2.0.1", "node-polyfill-webpack-plugin": "^3.0.0", + "elkjs": "^0.11.0", "vue-draggable-next": "^2.2.1", "yaml": "^2.5.1" }, @@ -53,9 +53,9 @@ "agents:generate": "./scripts/generate-agent-and-persona-mds.sh" }, "devDependencies": { + "@commitlint/load": "^19.8.1", "@commitlint/cli": "^19.8.1", "@commitlint/config-conventional": "^19.8.1", - "@commitlint/load": "^19.8.1", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^7.1.0", "husky": "^9.1.7" diff --git a/pkg/harvester/utils/datastores.json b/pkg/harvester/utils/datastores.json deleted file mode 100644 index ccaba58a..00000000 --- a/pkg/harvester/utils/datastores.json +++ /dev/null @@ -1,272 +0,0 @@ -[ - { - "id": "datastore-16879", - "parent": { - "kind": "Folder", - "id": "group-s1004" - }, - "path": "/PG Devlab/datastore/Content Library Datastore", - "revision": 646, - "name": "Content Library Datastore", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/datastores/datastore-16879", - "type": "NFS41", - "capacity": 65542688866304, - "free": 65166035648512, - "maintenance": "normal" - }, - { - "id": "datastore-2036", - "parent": { - "kind": "Folder", - "id": "group-s1004" - }, - "path": "/PG Devlab/datastore/Mako14-Spinner1", - "revision": 460, - "name": "Mako14-Spinner1", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/datastores/datastore-2036", - "type": "VMFS", - "capacity": 0, - "free": 0, - "maintenance": "normal" - }, - { - "id": "datastore-16880", - "parent": { - "kind": "Folder", - "id": "group-s1004" - }, - "path": "/PG Devlab/datastore/VCSA Services", - "revision": 631, - "name": "VCSA Services", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/datastores/datastore-16880", - "type": "NFS41", - "capacity": 1545487384576, - "free": 1545007792128, - "maintenance": "normal" - }, - { - "id": "datastore-12038", - "parent": { - "kind": "Folder", - "id": "group-s1004" - }, - "path": "/PG Devlab/datastore/Mako13-Spinner1", - "revision": 1, - "name": "Mako13-Spinner1", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/datastores/datastore-12038", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7993813893120, - "maintenance": "normal" - }, - { - "id": "datastore-2045", - "parent": { - "kind": "Folder", - "id": "group-s1004" - }, - "path": "/PG Devlab/datastore/Mako15-Spinner1", - "revision": 10, - "name": "Mako15-Spinner1", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/datastores/datastore-2045", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7883079024640, - "maintenance": "normal" - }, - { - "id": "datastore-2043", - "parent": { - "kind": "Folder", - "id": "group-s1004" - }, - "path": "/PG Devlab/datastore/Mako13-Local", - "revision": 107, - "name": "Mako13-Local", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/datastores/datastore-2043", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7444761673728, - "maintenance": "normal" - }, - { - "id": "datastore-2044", - "parent": { - "kind": "Folder", - "id": "group-s1004" - }, - "path": "/PG Devlab/datastore/Mako14-Local", - "revision": 411, - "name": "Mako14-Local", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/datastores/datastore-2044", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7953250779136, - "maintenance": "normal" - }, - { - "id": "datastore-27001", - "parent": { - "kind": "Folder", - "id": "group-s1004" - }, - "path": "/PG Devlab/datastore/Heartbeat-01", - "revision": 644, - "name": "Heartbeat-01", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/datastores/datastore-27001", - "type": "NFS41", - "capacity": 1545227599872, - "free": 1545007792128, - "maintenance": "normal" - }, - { - "id": "datastore-27002", - "parent": { - "kind": "Folder", - "id": "group-s1004" - }, - "path": "/PG Devlab/datastore/Heartbeat-02", - "revision": 642, - "name": "Heartbeat-02", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/datastores/datastore-27002", - "type": "NFS41", - "capacity": 1545007972352, - "free": 1545007792128, - "maintenance": "normal" - }, - { - "id": "datastore-60001", - "parent": { - "kind": "Folder", - "id": "group-s1004" - }, - "path": "/PG Devlab/datastore/NFS VM Datastore", - "revision": 460, - "name": "NFS VM Datastore", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/datastores/datastore-60001", - "type": "NFS41", - "capacity": 65169610178560, - "free": 65166043054080, - "maintenance": "normal" - }, - { - "id": "datastore-14753", - "parent": { - "kind": "Folder", - "id": "group-s1004" - }, - "path": "/PG Devlab/datastore/Content Library Datastore-DEAD", - "revision": 1, - "name": "Content Library Datastore-DEAD", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/datastores/datastore-14753", - "type": "NFS41", - "capacity": 76523271618560, - "free": 76438520856576, - "maintenance": "normal" - }, - { - "id": "datastore-2039", - "parent": { - "kind": "Folder", - "id": "group-s1004" - }, - "path": "/PG Devlab/datastore/Mako15-Local", - "revision": 263, - "name": "Mako15-Local", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/datastores/datastore-2039", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792, - "maintenance": "normal" - }, - { - "id": "datastore-2035", - "parent": { - "kind": "StoragePod", - "id": "group-p2042" - }, - "path": "/Mako13-NVMe2", - "revision": 855, - "name": "Mako13-NVMe2", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/datastores/datastore-2035", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320, - "maintenance": "normal" - }, - { - "id": "datastore-2034", - "parent": { - "kind": "StoragePod", - "id": "group-p2042" - }, - "path": "/Mako13-NVMe1", - "revision": 44, - "name": "Mako13-NVMe1", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/datastores/datastore-2034", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544, - "maintenance": "normal" - }, - { - "id": "datastore-2037", - "parent": { - "kind": "StoragePod", - "id": "group-p2042" - }, - "path": "/Mako14-NVMe1", - "revision": 450, - "name": "Mako14-NVMe1", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/datastores/datastore-2037", - "type": "VMFS", - "capacity": 1600143753216, - "free": 466680283136, - "maintenance": "normal" - }, - { - "id": "datastore-2040", - "parent": { - "kind": "StoragePod", - "id": "group-p2042" - }, - "path": "/Mako15-NVMe1", - "revision": 648, - "name": "Mako15-NVMe1", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/datastores/datastore-2040", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176, - "maintenance": "normal" - }, - { - "id": "datastore-2038", - "parent": { - "kind": "StoragePod", - "id": "group-p2042" - }, - "path": "/Mako14-NVMe2", - "revision": 623, - "name": "Mako14-NVMe2", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/datastores/datastore-2038", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696, - "maintenance": "normal" - }, - { - "id": "datastore-2041", - "parent": { - "kind": "StoragePod", - "id": "group-p2042" - }, - "path": "/Mako15-NVMe2", - "revision": 642, - "name": "Mako15-NVMe2", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/datastores/datastore-2041", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240, - "maintenance": "normal" - } -] \ No newline at end of file diff --git a/pkg/harvester/utils/networks.json b/pkg/harvester/utils/networks.json deleted file mode 100644 index a8669059..00000000 --- a/pkg/harvester/utils/networks.json +++ /dev/null @@ -1,332 +0,0 @@ -[ - { - "id": "dvs-5001", - "parent": { - "kind": "Folder", - "id": "group-n1005" - }, - "path": "/PG Devlab/network/Production-VDS", - "revision": 1, - "name": "Production-VDS", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/networks/dvs-5001", - "variant": "DvSwitch", - "vlanId": "", - "host": [ - { - "Host": { - "kind": "Host", - "id": "host-1010" - }, - "PNIC": [ - "vmnic2" - ] - }, - { - "Host": { - "kind": "Host", - "id": "host-1012" - }, - "PNIC": [ - "vmnic2" - ] - }, - { - "Host": { - "kind": "Host", - "id": "host-2003" - }, - "PNIC": [ - "vmnic2" - ] - } - ] - }, - { - "id": "dvs-13021", - "parent": { - "kind": "Folder", - "id": "group-n1005" - }, - "path": "/PG Devlab/network/DSwitch", - "revision": 1, - "name": "DSwitch", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/networks/dvs-13021", - "variant": "DvSwitch", - "vlanId": "", - "host": [ - { - "Host": { - "kind": "Host", - "id": "host-1010" - }, - "PNIC": [ - "vmnic0" - ] - }, - { - "Host": { - "kind": "Host", - "id": "host-1012" - }, - "PNIC": [ - "vmnic0" - ] - }, - { - "Host": { - "kind": "Host", - "id": "host-2003" - }, - "PNIC": [ - "vmnic0" - ] - } - ] - }, - { - "id": "dvportgroup-13026", - "parent": { - "kind": "Folder", - "id": "group-n1005" - }, - "path": "/PG Devlab/network/DSwitch-vMotion", - "revision": 1, - "name": "DSwitch-vMotion", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/networks/dvportgroup-13026", - "variant": "DvPortGroup", - "dvSwitch": { - "kind": "Network", - "id": "dvs-13021" - }, - "vlanId": "", - "host": null, - "key": "dvportgroup-13026" - }, - { - "id": "dvportgroup-13027", - "parent": { - "kind": "Folder", - "id": "group-n1005" - }, - "path": "/PG Devlab/network/DSwitch-vSAN", - "revision": 1, - "name": "DSwitch-vSAN", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/networks/dvportgroup-13027", - "variant": "DvPortGroup", - "dvSwitch": { - "kind": "Network", - "id": "dvs-13021" - }, - "vlanId": "", - "host": null, - "key": "dvportgroup-13027" - }, - { - "id": "dvportgroup-13023", - "parent": { - "kind": "Folder", - "id": "group-n1005" - }, - "path": "/PG Devlab/network/DSwitch-vCenter-HA-Management", - "revision": 1, - "name": "DSwitch-vCenter-HA-Management", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/networks/dvportgroup-13023", - "variant": "DvPortGroup", - "dvSwitch": { - "kind": "Network", - "id": "dvs-13021" - }, - "vlanId": "", - "host": null, - "key": "dvportgroup-13023" - }, - { - "id": "dvportgroup-13025", - "parent": { - "kind": "Folder", - "id": "group-n1005" - }, - "path": "/PG Devlab/network/DSwitch-vCenter-HA-VM-Network", - "revision": 1, - "name": "DSwitch-vCenter-HA-VM-Network", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/networks/dvportgroup-13025", - "variant": "DvPortGroup", - "dvSwitch": { - "kind": "Network", - "id": "dvs-13021" - }, - "vlanId": "", - "host": null, - "key": "dvportgroup-13025" - }, - { - "id": "dvportgroup-13024", - "parent": { - "kind": "Folder", - "id": "group-n1005" - }, - "path": "/PG Devlab/network/DSwitch-vCenter-HA-Witness", - "revision": 1, - "name": "DSwitch-vCenter-HA-Witness", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/networks/dvportgroup-13024", - "variant": "DvPortGroup", - "dvSwitch": { - "kind": "Network", - "id": "dvs-13021" - }, - "vlanId": "", - "host": null, - "key": "dvportgroup-13024" - }, - { - "id": "dvportgroup-5002", - "parent": { - "kind": "Folder", - "id": "group-n1005" - }, - "path": "/PG Devlab/network/Production-VDS-DVUplinks-5001", - "revision": 1, - "name": "Production-VDS-DVUplinks-5001", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/networks/dvportgroup-5002", - "variant": "DvPortGroup", - "dvSwitch": { - "kind": "Network", - "id": "dvs-5001" - }, - "vlanId": "0-4094", - "host": null, - "key": "dvportgroup-5002" - }, - { - "id": "dvportgroup-5003", - "parent": { - "kind": "Folder", - "id": "group-n1005" - }, - "path": "/PG Devlab/network/VM-Network", - "revision": 1, - "name": "VM-Network", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/networks/dvportgroup-5003", - "variant": "DvPortGroup", - "dvSwitch": { - "kind": "Network", - "id": "dvs-5001" - }, - "vlanId": "", - "host": null, - "key": "dvportgroup-5003" - }, - { - "id": "dvportgroup-5005", - "parent": { - "kind": "Folder", - "id": "group-n1005" - }, - "path": "/PG Devlab/network/mgmt", - "revision": 1, - "name": "mgmt", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/networks/dvportgroup-5005", - "variant": "DvPortGroup", - "dvSwitch": { - "kind": "Network", - "id": "dvs-5001" - }, - "vlanId": "", - "host": null, - "key": "dvportgroup-5005" - }, - { - "id": "dvportgroup-6001", - "parent": { - "kind": "Folder", - "id": "group-n1005" - }, - "path": "/PG Devlab/network/vCenter-HA", - "revision": 1, - "name": "vCenter-HA", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/networks/dvportgroup-6001", - "variant": "DvPortGroup", - "dvSwitch": { - "kind": "Network", - "id": "dvs-5001" - }, - "vlanId": "", - "host": null, - "key": "dvportgroup-6001" - }, - { - "id": "dvportgroup-13022", - "parent": { - "kind": "Folder", - "id": "group-n1005" - }, - "path": "/PG Devlab/network/DSwitch-DVUplinks-13021", - "revision": 1, - "name": "DSwitch-DVUplinks-13021", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/networks/dvportgroup-13022", - "variant": "DvPortGroup", - "dvSwitch": { - "kind": "Network", - "id": "dvs-13021" - }, - "vlanId": "0-4094", - "host": null, - "key": "dvportgroup-13022" - }, - { - "id": "network-12023", - "parent": { - "kind": "Folder", - "id": "group-n1005" - }, - "path": "/PG Devlab/network/vCenter-HA-Witness", - "revision": 1, - "name": "vCenter-HA-Witness", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/networks/network-12023", - "variant": "Standard", - "vlanId": "", - "host": null - }, - { - "id": "network-12022", - "parent": { - "kind": "Folder", - "id": "group-n1005" - }, - "path": "/PG Devlab/network/vCenter-HA-Management", - "revision": 1, - "name": "vCenter-HA-Management", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/networks/network-12022", - "variant": "Standard", - "vlanId": "", - "host": null - }, - { - "id": "network-12021", - "parent": { - "kind": "Folder", - "id": "group-n1005" - }, - "path": "/PG Devlab/network/vCenter-HA-VM-Network", - "revision": 1, - "name": "vCenter-HA-VM-Network", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/networks/network-12021", - "variant": "Standard", - "vlanId": "", - "host": null - }, - { - "id": "network-1017", - "parent": { - "kind": "Folder", - "id": "group-n1005" - }, - "path": "/PG Devlab/network/VM Network", - "revision": 1, - "name": "VM Network", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/networks/network-1017", - "variant": "Standard", - "vlanId": "", - "host": null - } -] \ No newline at end of file diff --git a/pkg/harvester/utils/vms.json b/pkg/harvester/utils/vms.json deleted file mode 100644 index ff306613..00000000 --- a/pkg/harvester/utils/vms.json +++ /dev/null @@ -1,14275 +0,0 @@ -[ - { - "id": "vm-23132", - "name": "mdrke2ubn2", - "path": "/PG Devlab/vm/mdrke2ubn2", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-23132", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe1] mdrke2ubn2/mdrke2ubn2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:39:6f", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "ubuntu", - "storageUsed": 3214454308 - }, - { - "id": "vm-19205", - "name": "test2-pool1-q5rrn-4d6tq", - "path": "/PG Devlab/vm/test2-pool1-q5rrn-4d6tq", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-19205", - "revision": 7935, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "SUSE Linux Enterprise 8/9 (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3000, - "file": "[Content Library Datastore] test2-pool1-q5rrn-4d6tq/test2-pool1-q5rrn-4d6tq.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-16879", - "name": "Content Library Datastore", - "type": "NFS41", - "capacity": 65542688866304, - "free": 65166035648512 - }, - "capacity": 25769803776, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.usb_controller.detected", - "label": "USB controller detected", - "category": "Warning", - "assessment": "USB controllers are not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but the devices attached to the USB controller will not be migrated. Administrators can configure this after migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:34:45", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:3445", - "hostName": "test2-pool1-q5rrn-4d6tq", - "storageUsed": 2670441493 - }, - { - "id": "vm-21526", - "name": "iz-k3s-3", - "path": "/PG Devlab/vm/iz-k3s-3", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-21526", - "revision": 1519, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe1] iz-k3s-3/iz-k3s-3.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2037", - "name": "Mako14-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 466680283136 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:68:0c", - "order": 0 - } - ], - "ipAddress": "10.124.139.215", - "hostName": "ubuntu", - "storageUsed": 26002863000 - }, - { - "id": "vm-19025", - "name": "mr-scsi-temp", - "path": "/PG Devlab/vm/mr-scsi-temp", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-19025", - "revision": 196, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 2048, - "guestName": "Other Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-12022", - "name": "vCenter-HA-Management", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] mr-scsi-temp/mr-scsi-temp.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 10737418240, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-12022" - }, - "mac": "00:50:56:93:13:b2", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "", - "storageUsed": 10737536753 - }, - { - "id": "vm-24234", - "name": "vsphre-cluster-01-pool-wrk-qwsnw-6s7nk", - "path": "/PG Devlab/vm/vsphre-cluster-01-pool-wrk-qwsnw-6s7nk", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24234", - "revision": 1340, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] vsphre-cluster-01-pool-wrk-qwsnw-6s7nk/vsphre-cluster-01-pool-wrk-qwsnw-6s7nk.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:1f:60", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:1f60", - "hostName": "vsphre-cluster-01-pool-wrk-qwsnw-6s7nk", - "storageUsed": 6751337020 - }, - { - "id": "vm-19184", - "name": "ibs-rke2-server", - "path": "/PG Devlab/vm/ibs-rke2-server", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-19184", - "revision": 1500, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe1] ibs-rke2-server/ibs-rke2-server.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2037", - "name": "Mako14-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 466680283136 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:8b:49", - "order": 0 - } - ], - "ipAddress": "10.124.139.243", - "hostName": "ubuntu", - "storageUsed": 21594652421 - }, - { - "id": "vm-17607", - "name": "rishabh-vm", - "path": "/PG Devlab/vm/rishabh-vm", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-17607", - "revision": 1494, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe1] rishabh-vm/rishabh-vm.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2037", - "name": "Mako14-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 466680283136 - }, - "capacity": 85899345920, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:e1:00", - "order": 0 - } - ], - "ipAddress": "10.124.138.193", - "hostName": "ubuntu", - "storageUsed": 21021412646 - }, - { - "id": "vm-12017", - "name": "sdevadiga-validation-runs", - "path": "/PG Devlab/vm/sdevadiga-validation-runs", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-12017", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 16384, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe2] sdevadiga-validation-runs/sdevadiga-validation-runs.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 107374182400, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.disk_serial.truncated", - "label": "Disk serial numbers may be truncated", - "category": "Information", - "assessment": "This VM is configured with at least one SCSI disk and the disk.EnableUUID parameter is set to TRUE. This may indicate a need for consistent SCSI disk serial numbers, but be advised that these serial numbers will be truncated after migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:f1:d4", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "sdevadiga-validation", - "storageUsed": 12326165327 - }, - { - "id": "vm-18780", - "name": "mddtfubu", - "path": "/PG Devlab/vm/mddtfubu", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-18780", - "revision": 1072, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] mddtfubu/mddtfubu.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 42949672960, - "bus": "scsi" - }, - { - "key": 2001, - "file": "[Mako14-NVMe2] mddtfubu/mddtfubu_10.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2002, - "file": "[Mako14-NVMe2] mddtfubu/mddtfubu_3.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2003, - "file": "[Mako14-NVMe2] mddtfubu/mddtfubu_6.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2004, - "file": "[Mako14-NVMe2] mddtfubu/mddtfubu_9.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 1073741824, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:1 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:2 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:3 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:4 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:fe:e4", - "order": 0 - } - ], - "ipAddress": "10.124.139.165", - "hostName": "rancherhost", - "storageUsed": 18769716572 - }, - { - "id": "vm-19183", - "name": "ibs-private-registry", - "path": "/PG Devlab/vm/ibs-private-registry", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-19183", - "revision": 1492, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe1] ibs-private-registry/ibs-private-registry.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2037", - "name": "Mako14-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 466680283136 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:eb:55", - "order": 0 - } - ], - "ipAddress": "10.124.139.200", - "hostName": "ubuntu", - "storageUsed": 30488695423 - }, - { - "id": "vm-24239", - "name": "vsphre-cluster-01-pool-cp-lf99n-tmft4", - "path": "/PG Devlab/vm/vsphre-cluster-01-pool-cp-lf99n-tmft4", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24239", - "revision": 1341, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] vsphre-cluster-01-pool-cp-lf99n-tmft4/vsphre-cluster-01-pool-cp-lf99n-tmft4.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:76:e5", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:76e5", - "hostName": "vsphre-cluster-01-pool-cp-lf99n-tmft4", - "storageUsed": 6736655512 - }, - { - "id": "vm-18947", - "name": "vsavian-fresh-sles16-test", - "path": "/PG Devlab/vm/vsavian-fresh-sles16-test", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-18947", - "revision": 276, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 32768, - "guestName": "SUSE Linux Enterprise 8/9 (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3000, - "file": "[Mako13-NVMe2] vsavian-fresh-sles16-test/vsavian-fresh-sles16-test.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 25769803776, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.usb_controller.detected", - "label": "USB controller detected", - "category": "Warning", - "assessment": "USB controllers are not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but the devices attached to the USB controller will not be migrated. Administrators can configure this after migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:75:68", - "order": 0 - } - ], - "ipAddress": "10.124.138.234", - "hostName": "dyn-2-234.devlab.pgu1.suse.com", - "storageUsed": 60228769840 - }, - { - "id": "vm-60331", - "name": "mo-test-pool1-mzgf2-bg798", - "path": "/PG Devlab/vm/mo-test-pool1-mzgf2-bg798", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60331", - "revision": 7442, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Other 2.6.x Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-Local] mo-test-pool1-mzgf2-bg798/mo-test-pool1-mzgf2-bg798.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2043", - "name": "Mako13-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7444761673728 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:72:47", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:7247", - "hostName": "mo-test-pool1-mzgf2-bg798", - "storageUsed": 7456810222 - }, - { - "id": "vm-24255", - "name": "vsphere-cluster-01-pool-cp-9m2hc-84fmj", - "path": "/PG Devlab/vm/vsphere-cluster-01-pool-cp-9m2hc-84fmj", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24255", - "revision": 1342, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] vsphere-cluster-01-pool-cp-9m2hc-84fmj/vsphere-cluster-01-pool-cp-9m2hc-84fmj.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:26:fc", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:26fc", - "hostName": "vsphere-cluster-01-pool-cp-9m2hc-84fmj", - "storageUsed": 6348469272 - }, - { - "id": "vm-19946", - "name": "Master-node", - "path": "/PG Devlab/vm/Master-node", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-19946", - "revision": 278, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 4, - "memoryMB": 16384, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe2] Master-node/Master-node.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:0e:8a", - "order": 0 - } - ], - "ipAddress": "10.124.139.35", - "hostName": "nvqa-master-node", - "storageUsed": 60220638417 - }, - { - "id": "vm-15375", - "name": "lrosa-longhorn", - "path": "/PG Devlab/vm/lrosa-longhorn", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-15375", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "network-12022", - "name": "vCenter-HA-Management", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Content Library Datastore-DEAD] lrosa-longhorn/lrosa-longhorn.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-14753", - "name": "Content Library Datastore-DEAD", - "type": "NFS41", - "capacity": 76523271618560, - "free": 76438520856576 - }, - "capacity": 26843545600, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-12022" - }, - "mac": "00:50:56:93:e2:e5", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "", - "storageUsed": 10913 - }, - { - "id": "vm-19974", - "name": "worker-node-02", - "path": "/PG Devlab/vm/worker-node-02", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-19974", - "revision": 260, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 4, - "memoryMB": 16384, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe1] worker-node-02/worker-node-02.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2037", - "name": "Mako14-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 466680283136 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:7a:41", - "order": 0 - } - ], - "ipAddress": "10.124.139.174", - "hostName": "nvqa-worker-node-02", - "storageUsed": 60220438941 - }, - { - "id": "vm-24233", - "name": "vsphre-cluster-01-pool-wrk-qwsnw-ntwq6", - "path": "/PG Devlab/vm/vsphre-cluster-01-pool-wrk-qwsnw-ntwq6", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24233", - "revision": 1341, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] vsphre-cluster-01-pool-wrk-qwsnw-ntwq6/vsphre-cluster-01-pool-wrk-qwsnw-ntwq6.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:af:78", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:af78", - "hostName": "vsphre-cluster-01-pool-wrk-qwsnw-ntwq6", - "storageUsed": 6725954818 - }, - { - "id": "vm-25275", - "name": "vivek-rancher", - "path": "/PG Devlab/vm/vivek-rancher", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-25275", - "revision": 9220, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Content Library Datastore] vivek-rancher/vivek-rancher.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-16879", - "name": "Content Library Datastore", - "type": "NFS41", - "capacity": 65542688866304, - "free": 65166035648512 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:68:b0", - "order": 0 - } - ], - "ipAddress": "10.124.138.237", - "hostName": "ranchervivek", - "storageUsed": 14968975509 - }, - { - "id": "vm-19030", - "name": "mrnvmenew", - "path": "/PG Devlab/vm/mrnvmenew", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-19030", - "revision": 196, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Microsoft Windows Server 2019 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "network-12022", - "name": "vCenter-HA-Management", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 32000, - "file": "[Mako14-NVMe2] mrnvmenew/mrnvmenew.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 10737418240, - "bus": "nvme" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - nvme0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.disk.nvme.detected", - "label": "Disk NVMe was detcted", - "category": "Critical", - "assessment": "NVMe disks are not currently supported by MTV. The VM cannot be migrated" - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-12022" - }, - "mac": "00:50:56:93:05:56", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "ubuntu-server", - "storageUsed": 10737897798 - }, - { - "id": "vm-25024", - "name": "ui-qa-tests-pool1-6nhlp-lhv5p", - "path": "/PG Devlab/vm/ui-qa-tests-pool1-6nhlp-lhv5p", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-25024", - "revision": 1559, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Other 2.6.x Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5005", - "name": "mgmt", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe1] ui-qa-tests-pool1-6nhlp-lhv5p/ui-qa-tests-pool1-6nhlp-lhv5p.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5005" - }, - "mac": "00:50:56:93:ea:83", - "order": 0 - } - ], - "ipAddress": "10.124.139.188", - "hostName": "ui-qa-tests-pool1-6nhlp-lhv5p", - "storageUsed": 9404480362 - }, - { - "id": "vm-19026", - "name": "mrnewscsitemp", - "path": "/PG Devlab/vm/mrnewscsitemp", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-19026", - "revision": 196, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Other Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-12022", - "name": "vCenter-HA-Management", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] mrnewscsitemp/mrnewscsitemp.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 10737418240, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-12022" - }, - "mac": "00:50:56:93:fc:0a", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "ubuntu-server", - "storageUsed": 2412941419 - }, - { - "id": "vm-60330", - "name": "mo-test-pool1-mzgf2-m6fkr", - "path": "/PG Devlab/vm/mo-test-pool1-mzgf2-m6fkr", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60330", - "revision": 6818, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Other 2.6.x Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-Local] mo-test-pool1-mzgf2-m6fkr/mo-test-pool1-mzgf2-m6fkr.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2043", - "name": "Mako13-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7444761673728 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:09:89", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:989", - "hostName": "mo-test-pool1-mzgf2-m6fkr", - "storageUsed": 7442130421 - }, - { - "id": "vm-24230", - "name": "rishabh-win-pool2-dsmqj-gqxpg", - "path": "/PG Devlab/vm/rishabh-win-pool2-dsmqj-gqxpg", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24230", - "revision": 4, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 16, - "coresPerSocket": 1, - "memoryMB": 12288, - "guestName": "Microsoft Windows Server 2025 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] rishabh-win-pool2-dsmqj-gqxpg/rishabh-win-pool2-dsmqj-gqxpg.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 41943040000, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - }, - { - "id": "vmware.disk_serial.truncated", - "label": "Disk serial numbers may be truncated", - "category": "Information", - "assessment": "This VM is configured with at least one SCSI disk and the disk.EnableUUID parameter is set to TRUE. This may indicate a need for consistent SCSI disk serial numbers, but be advised that these serial numbers will be truncated after migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:3f:9e", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "", - "storageUsed": 21069311432 - }, - { - "id": "vm-24240", - "name": "vsphre-cluster-01-pool-cp-lf99n-ztwbq", - "path": "/PG Devlab/vm/vsphre-cluster-01-pool-cp-lf99n-ztwbq", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24240", - "revision": 1341, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] vsphre-cluster-01-pool-cp-lf99n-ztwbq/vsphre-cluster-01-pool-cp-lf99n-ztwbq.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:0b:13", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:b13", - "hostName": "vsphre-cluster-01-pool-cp-lf99n-ztwbq", - "storageUsed": 6737703811 - }, - { - "id": "vm-24231", - "name": "rishabh-win-pool1-rtz4d-jzhdc", - "path": "/PG Devlab/vm/rishabh-win-pool1-rtz4d-jzhdc", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24231", - "revision": 4, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] rishabh-win-pool1-rtz4d-jzhdc/rishabh-win-pool1-rtz4d-jzhdc.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 10737418240, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - } - ], - "nics": [], - "ipAddress": "", - "hostName": "", - "storageUsed": 10737430322 - }, - { - "id": "vm-25022", - "name": "ui-qa-tests-pool1-6nhlp-j6p5r", - "path": "/PG Devlab/vm/ui-qa-tests-pool1-6nhlp-j6p5r", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-25022", - "revision": 1558, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Other 2.6.x Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5005", - "name": "mgmt", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe1] ui-qa-tests-pool1-6nhlp-j6p5r/ui-qa-tests-pool1-6nhlp-j6p5r.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5005" - }, - "mac": "00:50:56:93:cb:44", - "order": 0 - } - ], - "ipAddress": "10.124.139.169", - "hostName": "ui-qa-tests-pool1-6nhlp-j6p5r", - "storageUsed": 9389788924 - }, - { - "id": "vm-24256", - "name": "vsphere-cluster-01-pool-wkr-7nf4n-vlk7m", - "path": "/PG Devlab/vm/vsphere-cluster-01-pool-wkr-7nf4n-vlk7m", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24256", - "revision": 1343, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] vsphere-cluster-01-pool-wkr-7nf4n-vlk7m/vsphere-cluster-01-pool-wkr-7nf4n-vlk7m.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:94:98", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:9498", - "hostName": "vsphere-cluster-01-pool-wkr-7nf4n-vlk7m", - "storageUsed": 6367559316 - }, - { - "id": "vm-24228", - "name": "rishabh-2-pool2-h5zww-kf47m", - "path": "/PG Devlab/vm/rishabh-2-pool2-h5zww-kf47m", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24228", - "revision": 4, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 12, - "coresPerSocket": 1, - "memoryMB": 12288, - "guestName": "Microsoft Windows Server 2022 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] rishabh-2-pool2-h5zww-kf47m/rishabh-2-pool2-h5zww-kf47m.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 41943040000, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - }, - { - "id": "vmware.disk_serial.truncated", - "label": "Disk serial numbers may be truncated", - "category": "Information", - "assessment": "This VM is configured with at least one SCSI disk and the disk.EnableUUID parameter is set to TRUE. This may indicate a need for consistent SCSI disk serial numbers, but be advised that these serial numbers will be truncated after migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:29:1e", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "", - "storageUsed": 21356621246 - }, - { - "id": "vm-18945", - "name": "vsavian-sles16-selinux", - "path": "/PG Devlab/vm/vsavian-sles16-selinux", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-18945", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 16384, - "guestName": "SUSE Linux Enterprise 8/9 (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3000, - "file": "[Mako13-NVMe1] vsavian-sles16-selinux/vsavian-sles16-selinux.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 25769803776, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.usb_controller.detected", - "label": "USB controller detected", - "category": "Warning", - "assessment": "USB controllers are not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but the devices attached to the USB controller will not be migrated. Administrators can configure this after migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:8d:47", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "dyn-2-184.devlab.pgu1.suse.com", - "storageUsed": 25770084950 - }, - { - "id": "vm-21525", - "name": "iz-k3s-2", - "path": "/PG Devlab/vm/iz-k3s-2", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-21525", - "revision": 1514, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe1] iz-k3s-2/iz-k3s-2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2037", - "name": "Mako14-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 466680283136 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:20:00", - "order": 0 - } - ], - "ipAddress": "10.124.139.80", - "hostName": "ubuntu", - "storageUsed": 26272347032 - }, - { - "id": "vm-21524", - "name": "iz-k3s-1", - "path": "/PG Devlab/vm/iz-k3s-1", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-21524", - "revision": 1508, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe1] iz-k3s-1/iz-k3s-1.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2037", - "name": "Mako14-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 466680283136 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:78:08", - "order": 0 - } - ], - "ipAddress": "10.124.139.196", - "hostName": "ubuntu", - "storageUsed": 26744206233 - }, - { - "id": "vm-22031", - "name": "mdk3k", - "path": "/PG Devlab/vm/mdk3k", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-22031", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 16384, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe1] mdk3k/mdk3k.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:8b:89", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "ubuntu", - "storageUsed": 11045036793 - }, - { - "id": "vm-60329", - "name": "mo-test-pool1-mzgf2-mqzwr", - "path": "/PG Devlab/vm/mo-test-pool1-mzgf2-mqzwr", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60329", - "revision": 7467, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Other 2.6.x Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-Local] mo-test-pool1-mzgf2-mqzwr/mo-test-pool1-mzgf2-mqzwr.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2043", - "name": "Mako13-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7444761673728 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:b6:b8", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:b6b8", - "hostName": "mo-test-pool1-mzgf2-mqzwr", - "storageUsed": 7448421427 - }, - { - "id": "vm-60332", - "name": "mo-test-pool1-w4gnh-c9cmj", - "path": "/PG Devlab/vm/mo-test-pool1-w4gnh-c9cmj", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60332", - "revision": 6836, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Other 2.6.x Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-Local] mo-test-pool1-w4gnh-c9cmj/mo-test-pool1-w4gnh-c9cmj.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2043", - "name": "Mako13-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7444761673728 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:74:38", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:7438", - "hostName": "mo-test-pool1-w4gnh-c9cmj", - "storageUsed": 7441081488 - }, - { - "id": "vm-24253", - "name": "vsphere-cluster-01-pool-cp-9m2hc-mrf85", - "path": "/PG Devlab/vm/vsphere-cluster-01-pool-cp-9m2hc-mrf85", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24253", - "revision": 1342, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] vsphere-cluster-01-pool-cp-9m2hc-mrf85/vsphere-cluster-01-pool-cp-9m2hc-mrf85.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:2e:eb", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:2eeb", - "hostName": "vsphere-cluster-01-pool-cp-9m2hc-mrf85", - "storageUsed": 6364411117 - }, - { - "id": "vm-19951", - "name": "worker-node-01", - "path": "/PG Devlab/vm/worker-node-01", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-19951", - "revision": 252, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 4, - "memoryMB": 16384, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] worker-node-01/worker-node-01.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:8f:92", - "order": 0 - } - ], - "ipAddress": "10.124.138.228", - "hostName": "nvqa-worker-node-01", - "storageUsed": 60220436941 - }, - { - "id": "vm-24238", - "name": "vsphre-cluster-01-pool-cp-dtmwx-hdbfj", - "path": "/PG Devlab/vm/vsphre-cluster-01-pool-cp-dtmwx-hdbfj", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24238", - "revision": 1341, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] vsphre-cluster-01-pool-cp-dtmwx-hdbfj/vsphre-cluster-01-pool-cp-dtmwx-hdbfj.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:f2:85", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:f285", - "hostName": "vsphre-cluster-01-pool-cp-dtmwx-hdbfj", - "storageUsed": 6739802373 - }, - { - "id": "vm-20103", - "name": "Bastion", - "path": "/PG Devlab/vm/Bastion", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-20103", - "revision": 264, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 4, - "memoryMB": 16384, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] Bastion/Bastion.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 85899345920, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:91:37", - "order": 0 - } - ], - "ipAddress": "10.124.139.175", - "hostName": "neuvector-bastion", - "storageUsed": 103170247741 - }, - { - "id": "vm-23131", - "name": "mdrke2ubn1", - "path": "/PG Devlab/vm/mdrke2ubn1", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-23131", - "revision": 1631, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe2] mdrke2ubn1/mdrke2ubn1.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:81:bc", - "order": 0 - } - ], - "ipAddress": "10.124.138.246", - "hostName": "ubuntu", - "storageUsed": 13106043147 - }, - { - "id": "vm-13429", - "name": "cjackson-v-pool1-lfpwv-dlg2r", - "path": "/PG Devlab/vm/cjackson-v-pool1-lfpwv-dlg2r", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-13429", - "revision": 196, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-Spinner1] cjackson-v-pool1-lfpwv-dlg2r/cjackson-v-pool1-lfpwv-dlg2r.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2036", - "name": "Mako14-Spinner1", - "type": "VMFS", - "capacity": 0, - "free": 0 - }, - "capacity": 20971520000, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:2b:a9", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "cjackson-v-pool1-lfpwv-dlg2r", - "storageUsed": 25352783612 - }, - { - "id": "vm-24254", - "name": "vsphere-cluster-01-pool-cp-9m2hc-v4tq2", - "path": "/PG Devlab/vm/vsphere-cluster-01-pool-cp-9m2hc-v4tq2", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24254", - "revision": 1342, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] vsphere-cluster-01-pool-cp-9m2hc-v4tq2/vsphere-cluster-01-pool-cp-9m2hc-v4tq2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:e1:61", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:e161", - "hostName": "vsphere-cluster-01-pool-cp-9m2hc-v4tq2", - "storageUsed": 6358120963 - }, - { - "id": "vm-17199", - "name": "vivek-rhel-96", - "path": "/PG Devlab/vm/vivek-rhel-96", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-17199", - "revision": 4, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Other 2.6.x Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Content Library Datastore] vivek-rhel-96/vivek-rhel-96.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-16879", - "name": "Content Library Datastore", - "type": "NFS41", - "capacity": 65542688866304, - "free": 65166035648512 - }, - "capacity": 0, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:2e:f6", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "localhost", - "storageUsed": 183613 - }, - { - "id": "vm-24235", - "name": "vsphre-cluster-01-pool-cp-dtmwx-nbbb2", - "path": "/PG Devlab/vm/vsphre-cluster-01-pool-cp-dtmwx-nbbb2", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24235", - "revision": 1341, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] vsphre-cluster-01-pool-cp-dtmwx-nbbb2/vsphre-cluster-01-pool-cp-dtmwx-nbbb2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:af:31", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:af31", - "hostName": "vsphre-cluster-01-pool-cp-dtmwx-nbbb2", - "storageUsed": 6743997139 - }, - { - "id": "vm-24237", - "name": "vsphre-cluster-01-pool-wrk-qwsnw-sjhq5", - "path": "/PG Devlab/vm/vsphre-cluster-01-pool-wrk-qwsnw-sjhq5", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24237", - "revision": 1343, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] vsphre-cluster-01-pool-wrk-qwsnw-sjhq5/vsphre-cluster-01-pool-wrk-qwsnw-sjhq5.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:62:b2", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:62b2", - "hostName": "vsphre-cluster-01-pool-wrk-qwsnw-sjhq5", - "storageUsed": 6730149227 - }, - { - "id": "vm-13428", - "name": "cjackson-v-pool1-572hj-fbcct", - "path": "/PG Devlab/vm/cjackson-v-pool1-572hj-fbcct", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-13428", - "revision": 196, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-Spinner1] cjackson-v-pool1-572hj-fbcct/cjackson-v-pool1-572hj-fbcct.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2036", - "name": "Mako14-Spinner1", - "type": "VMFS", - "capacity": 0, - "free": 0 - }, - "capacity": 20971520000, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:eb:8d", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "cjackson-v-pool1-572hj-fbcct", - "storageUsed": 25352790381 - }, - { - "id": "vm-25023", - "name": "ui-qa-tests-pool1-6nhlp-lnz7z", - "path": "/PG Devlab/vm/ui-qa-tests-pool1-6nhlp-lnz7z", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-25023", - "revision": 1558, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Other 2.6.x Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5005", - "name": "mgmt", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe1] ui-qa-tests-pool1-6nhlp-lnz7z/ui-qa-tests-pool1-6nhlp-lnz7z.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5005" - }, - "mac": "00:50:56:93:d4:b2", - "order": 0 - } - ], - "ipAddress": "10.124.139.229", - "hostName": "ui-qa-tests-pool1-6nhlp-lnz7z", - "storageUsed": 9393990743 - }, - { - "id": "vm-24236", - "name": "vsphre-cluster-01-pool-cp-dtmwx-ts4zq", - "path": "/PG Devlab/vm/vsphre-cluster-01-pool-cp-dtmwx-ts4zq", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24236", - "revision": 1341, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] vsphre-cluster-01-pool-cp-dtmwx-ts4zq/vsphre-cluster-01-pool-cp-dtmwx-ts4zq.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:78:e7", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:78e7", - "hostName": "vsphre-cluster-01-pool-cp-dtmwx-ts4zq", - "storageUsed": 6742949226 - }, - { - "id": "vm-60524", - "name": "andy-vm", - "path": "/PG Devlab/vm/andy-vm", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60524", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-Local] andy-vm/andy-vm.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2043", - "name": "Mako13-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7444761673728 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:13:3a", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "andy-vm", - "storageUsed": 53687673763 - }, - { - "id": "vm-60527", - "name": "forklift-vm", - "path": "/PG Devlab/vm/mfukumoto/forklift-vm", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60527", - "revision": 229, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-Local] forklift-vm/forklift-vm.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2043", - "name": "Mako13-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7444761673728 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:2b:17", - "order": 0 - } - ], - "ipAddress": "10.124.139.135", - "hostName": "andy-vm", - "storageUsed": 53687365700 - }, - { - "id": "vm-24748", - "name": "mo1", - "path": "/PG Devlab/vm/prak-vm-folder/mo1", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24748", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 2048, - "guestName": "Other 2.6.x Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe1] mo1/mo1.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:8f:dc", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "", - "storageUsed": 3035901956 - }, - { - "id": "vm-24747", - "name": "mo2", - "path": "/PG Devlab/vm/prak-vm-folder/mo2", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24747", - "revision": 7428, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 2048, - "guestName": "Other 2.6.x Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - }, - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe1] mo2_1/mo2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:84:cb", - "order": 0 - }, - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:d1:98", - "order": 1 - } - ], - "ipAddress": "10.124.139.100", - "hostName": "mo2", - "storageUsed": 5847761226 - }, - { - "id": "vm-15535", - "name": "prak-test3-prak-test3-pool1-xdr6r-bcwld", - "path": "/PG Devlab/vm/prak-vm-folder/prak-test3-prak-test3-pool1-xdr6r-bcwld", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-15535", - "revision": 58, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 2, - "memoryMB": 8096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe1] prak-test3-prak-test3-pool1-xdr6r-bcwld/prak-test3-prak-test3-pool1-xdr6r-bcwld.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 67108864000, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:cc:d0", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:ccd0", - "hostName": "prak-test3-prak-test3-pool1-xdr6r-bcwld", - "storageUsed": 75689743072 - }, - { - "id": "vm-15534", - "name": "isa-vsphere-2-isa-vsphere-2-pool1-gmxvk-68j47", - "path": "/PG Devlab/vm/prak-vm-folder/isa-vsphere-2-isa-vsphere-2-pool1-gmxvk-68j47", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-15534", - "revision": 57, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 2, - "memoryMB": 8096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe1] isa-vsphere-2-isa-vsphere-2-pool1-gmxvk-68j47/isa-vsphere-2-isa-vsphere-2-pool1-gmxvk-68j47.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 67108864000, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:88:56", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:8856", - "hostName": "isa-vsphere-2-isa-vsphere-2-pool1-gmxvk-68j47", - "storageUsed": 75690002296 - }, - { - "id": "vm-20881", - "name": "rancher-vsphere-cpi-2", - "path": "/PG Devlab/vm/etennis/rancher-vsphere-cpi-2", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-20881", - "revision": 59, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 4, - "memoryMB": 4096, - "guestName": "SUSE Linux Enterprise 15 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3002, - "file": "[Mako15-NVMe2] rancher-vsphere-cpi-2/rancher-vsphere-cpi-2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 42949672960, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:37:a7", - "order": 0 - } - ], - "ipAddress": "10.124.139.168", - "hostName": "dyn-3-168", - "storageUsed": 47335792959 - }, - { - "id": "vm-18647", - "name": "etennis-rancher-test-rhel", - "path": "/PG Devlab/vm/etennis/etennis-rancher-test-rhel", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-18647", - "revision": 196, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Other 2.6.x Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] etennis-rancher-test-rhel_1/etennis-rancher-test-rhel.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:68:80", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "dyn-3-027.devlab.pgu1.suse.com", - "storageUsed": 4341541383 - }, - { - "id": "vm-18952", - "name": "entennis-rke2-selinux-sles16-test", - "path": "/PG Devlab/vm/etennis/entennis-rke2-selinux-sles16-test", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-18952", - "revision": 4, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "SUSE Linux Enterprise 8/9 (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3000, - "file": "[Mako15-NVMe2] entennis-rke2-selinux-sles16-test/entennis-rke2-selinux-sles16-test.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 25769803776, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.usb_controller.detected", - "label": "USB controller detected", - "category": "Warning", - "assessment": "USB controllers are not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but the devices attached to the USB controller will not be migrated. Administrators can configure this after migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:e5:92", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "dyn-3-107.devlab.pgu1.suse.com", - "storageUsed": 25769968288 - }, - { - "id": "vm-20288", - "name": "sles16-GM", - "path": "/PG Devlab/vm/etennis/sles16-GM", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-20288", - "revision": 4, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "SUSE Linux Enterprise 16 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3000, - "file": "[Mako15-NVMe2] sles16-GM/sles16-GM.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 25769803776, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:ca:54", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "dyn-3-211.devlab.pgu1.suse.com", - "storageUsed": 25770224538 - }, - { - "id": "vm-20877", - "name": "rancher-vsphere-cpi-1", - "path": "/PG Devlab/vm/etennis/rancher-vsphere-cpi-1", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-20877", - "revision": 60, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 4, - "memoryMB": 4096, - "guestName": "SUSE Linux Enterprise 15 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3002, - "file": "[Mako15-NVMe2] rancher-vsphere-cpi-1/rancher-vsphere-cpi-1.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 42949672960, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:44:31", - "order": 0 - } - ], - "ipAddress": "10.124.139.208", - "hostName": "dyn-3-208", - "storageUsed": 47335786752 - }, - { - "id": "vm-20883", - "name": "rancher-vsphere-cpi-3", - "path": "/PG Devlab/vm/etennis/rancher-vsphere-cpi-3", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-20883", - "revision": 57, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 4, - "memoryMB": 4096, - "guestName": "SUSE Linux Enterprise 15 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3002, - "file": "[Mako15-NVMe2] rancher-vsphere-cpi-3/rancher-vsphere-cpi-3.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 42949672960, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:c5:5d", - "order": 0 - } - ], - "ipAddress": "10.124.139.44", - "hostName": "dyn-3-044", - "storageUsed": 47335793104 - }, - { - "id": "vm-19730", - "name": "aganesh-ubuntu", - "path": "/PG Devlab/vm/aganesh/aganesh-ubuntu", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-19730", - "revision": 1565, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe2] aganesh-ubuntu/aganesh-ubuntu.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 42949672960, - "bus": "scsi" - }, - { - "key": 2001, - "file": "[Mako13-NVMe2] fcd/7b36efb562514c0cbb287516725443dc.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2002, - "file": "[Mako13-NVMe2] fcd/0c9452c8ed944602b7f2e2d1813710e4.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2003, - "file": "[Mako13-NVMe2] fcd/c716f6c8bcdc4d61aa403a2ce41961e3.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2004, - "file": "[Mako13-NVMe2] fcd/2f470e1b1679428981020685e7f8bf5c.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2005, - "file": "[Mako13-NVMe2] fcd/b71d9fbd1c3f4fdcb3bef333b69aae63.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2006, - "file": "[Mako13-NVMe2] fcd/f2de8c2fe260404088bd4844e458a7c5.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 1073741824, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:1 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:2 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:3 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:4 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:5 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:6 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.disk_serial.truncated", - "label": "Disk serial numbers may be truncated", - "category": "Information", - "assessment": "This VM is configured with at least one SCSI disk and the disk.EnableUUID parameter is set to TRUE. This may indicate a need for consistent SCSI disk serial numbers, but be advised that these serial numbers will be truncated after migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:4f:00", - "order": 0 - } - ], - "ipAddress": "10.124.139.1", - "hostName": "rancherhost", - "storageUsed": 20132877437 - }, - { - "id": "vm-24620", - "name": "sles16test3", - "path": "/PG Devlab/vm/FRAN/sles16test3", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24620", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 6, - "coresPerSocket": 1, - "memoryMB": 24576, - "guestName": "SUSE Linux Enterprise 16 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3000, - "file": "[Content Library Datastore] sles16test3/sles16test3.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-16879", - "name": "Content Library Datastore", - "type": "NFS41", - "capacity": 65542688866304, - "free": 65166035648512 - }, - "capacity": 53687091200, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:3e:9e", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "dyn-3-042.devlab.pgu1.suse.com", - "storageUsed": 15963907364 - }, - { - "id": "vm-24621", - "name": "sles16test4", - "path": "/PG Devlab/vm/FRAN/sles16test4", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24621", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 6, - "coresPerSocket": 1, - "memoryMB": 24576, - "guestName": "SUSE Linux Enterprise 16 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3000, - "file": "[Content Library Datastore] sles16test4/sles16test4.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-16879", - "name": "Content Library Datastore", - "type": "NFS41", - "capacity": 65542688866304, - "free": 65166035648512 - }, - "capacity": 53687091200, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:00:10", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "dyn-3-111.devlab.pgu1.suse.com", - "storageUsed": 9956915907 - }, - { - "id": "vm-24558", - "name": "sles16", - "path": "/PG Devlab/vm/FRAN/sles16", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24558", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 6, - "coresPerSocket": 1, - "memoryMB": 24576, - "guestName": "SUSE Linux Enterprise 16 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Content Library Datastore] sles16/sles16.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-16879", - "name": "Content Library Datastore", - "type": "NFS41", - "capacity": 65542688866304, - "free": 65166035648512 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:40:f3", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "dyn-3-146.devlab.pgu1.suse.com", - "storageUsed": 17261629277 - }, - { - "id": "vm-16622", - "name": "slemicro6.2-3", - "path": "/PG Devlab/vm/FRAN/slemicro6.2-3", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-16622", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 10, - "coresPerSocket": 1, - "memoryMB": 20480, - "guestName": "SUSE Linux Enterprise 16 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3000, - "file": "[Mako13-NVMe2] slemicro6.2-3/slemicro6.2-3.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 25769803776, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:d2:a9", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "dyn-3-226.devlab.pgu1.suse.com", - "storageUsed": 25772596154 - }, - { - "id": "vm-24563", - "name": "sles16test2", - "path": "/PG Devlab/vm/FRAN/sles16test2", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24563", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 6, - "coresPerSocket": 1, - "memoryMB": 24576, - "guestName": "SUSE Linux Enterprise 16 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3000, - "file": "[Content Library Datastore] sles16test2/sles16test2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-16879", - "name": "Content Library Datastore", - "type": "NFS41", - "capacity": 65542688866304, - "free": 65166035648512 - }, - "capacity": 53687091200, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:b5:9e", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "dyn-3-065.devlab.pgu1.suse.com", - "storageUsed": 17119235958 - }, - { - "id": "vm-13767", - "name": "vt-alma-test", - "path": "/PG Devlab/vm/vtheile/vt-alma-test", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-13767", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 1, - "coresPerSocket": 1, - "memoryMB": 2048, - "guestName": "AlmaLinux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "network-12022", - "name": "vCenter-HA-Management", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 16001, - "file": "[Mako13-NVMe1] Alma/Alma.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 17179869184, - "bus": "sata" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - sata0:1 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-12022" - }, - "mac": "00:50:56:93:cf:14", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "", - "storageUsed": 17180263327 - }, - { - "id": "vm-14096", - "name": "testalma9", - "path": "/PG Devlab/vm/vtheile/testalma9", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-14096", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Red Hat Enterprise Linux 8 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-13024", - "name": "DSwitch-vCenter-HA-Witness", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe2] testalma9/testalma9.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 21474836480, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-13024" - }, - "mac": "00:50:56:93:6a:c0", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "", - "storageUsed": 21475242098 - }, - { - "id": "vm-13010", - "name": "vt-ubuntu-test", - "path": "/PG Devlab/vm/vtheile/vt-ubuntu-test", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-13010", - "revision": 6, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe2] vt-ubuntu-test/vt-ubuntu-test.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:e7:6b", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "ubuntu", - "storageUsed": 3126531229 - }, - { - "id": "vm-60002", - "name": "vt-ubuntu-test-2", - "path": "/PG Devlab/vm/vtheile/vt-ubuntu-test-2", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60002", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe1] vt-ubuntu-test-2/vt-ubuntu-test-2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 42949672960, - "bus": "scsi" - }, - { - "key": 2001, - "file": "[Mako13-NVMe1] vt-ubuntu-test-2/vt-ubuntu-test-2_3.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 5368709120, - "bus": "scsi" - }, - { - "key": 2002, - "file": "[Mako13-NVMe1] vt-ubuntu-test-2/vt-ubuntu-test-2_1.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 104857600, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:1 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:2 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:e0:63", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "", - "storageUsed": 3125818716 - }, - { - "id": "vm-26044", - "name": "vsphere-test-pool1-hx5jl-2zfv4", - "path": "/PG Devlab/vm/viveks/vsphere-test-pool1-hx5jl-2zfv4", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-26044", - "revision": 1569, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Other 2.6.x Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5005", - "name": "mgmt", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe1] vsphere-test-pool1-hx5jl-2zfv4/vsphere-test-pool1-hx5jl-2zfv4.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5005" - }, - "mac": "00:50:56:93:76:f0", - "order": 0 - } - ], - "ipAddress": "10.124.139.232", - "hostName": "vsphere-test-pool1-hx5jl-2zfv4", - "storageUsed": 17474112154 - }, - { - "id": "vm-24386", - "name": "new-cluster-03-wkr-r7lqs-vc4gp", - "path": "/PG Devlab/vm/mfreitas/new-cluster-03-wkr-r7lqs-vc4gp", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24386", - "revision": 1351, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 9536, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe1] new-cluster-03-wkr-r7lqs-vc4gp/new-cluster-03-wkr-r7lqs-vc4gp.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:f8:5e", - "order": 0 - } - ], - "ipAddress": "10.124.139.161", - "hostName": "new-cluster-03-wkr-r7lqs-vc4gp", - "storageUsed": 23547098608 - }, - { - "id": "vm-24260", - "name": "new-cluster-02-pool-wkr-z6bs2-7gxq4", - "path": "/PG Devlab/vm/mfreitas/new-cluster-02-pool-wkr-z6bs2-7gxq4", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24260", - "revision": 1341, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] new-cluster-02-pool-wkr-z6bs2-7gxq4/new-cluster-02-pool-wkr-z6bs2-7gxq4.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:de:bd", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:debd", - "hostName": "new-cluster-02-pool-wkr-z6bs2-7gxq4", - "storageUsed": 6363364532 - }, - { - "id": "vm-24475", - "name": "new-cluster-03-wkr-r7lqs-9jnct", - "path": "/PG Devlab/vm/mfreitas/new-cluster-03-wkr-r7lqs-9jnct", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24475", - "revision": 1357, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 9536, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe2] new-cluster-03-wkr-r7lqs-9jnct/new-cluster-03-wkr-r7lqs-9jnct.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:aa:80", - "order": 0 - } - ], - "ipAddress": "10.124.139.222", - "hostName": "new-cluster-03-wkr-r7lqs-9jnct", - "storageUsed": 21756917919 - }, - { - "id": "vm-24259", - "name": "new-cluster-02-pool-cp-kjf4l-fl8xx", - "path": "/PG Devlab/vm/mfreitas/new-cluster-02-pool-cp-kjf4l-fl8xx", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24259", - "revision": 1342, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] new-cluster-02-pool-cp-kjf4l-fl8xx/new-cluster-02-pool-cp-kjf4l-fl8xx.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:25:6e", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:256e", - "hostName": "new-cluster-02-pool-cp-kjf4l-fl8xx", - "storageUsed": 6368606989 - }, - { - "id": "vm-24473", - "name": "new-cluster-03-cp-g22nl-gt748", - "path": "/PG Devlab/vm/mfreitas/new-cluster-03-cp-g22nl-gt748", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24473", - "revision": 1344, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 9536, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe1] new-cluster-03-cp-g22nl-gt748/new-cluster-03-cp-g22nl-gt748.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:34:0f", - "order": 0 - } - ], - "ipAddress": "10.124.139.204", - "hostName": "new-cluster-03-cp-g22nl-gt748", - "storageUsed": 22159727916 - }, - { - "id": "vm-24471", - "name": "new-cluster-03-wkr-r7lqs-dcxsn", - "path": "/PG Devlab/vm/mfreitas/new-cluster-03-wkr-r7lqs-dcxsn", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24471", - "revision": 1343, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 9536, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe1] new-cluster-03-wkr-r7lqs-dcxsn/new-cluster-03-wkr-r7lqs-dcxsn.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:34:93", - "order": 0 - } - ], - "ipAddress": "10.124.139.219", - "hostName": "new-cluster-03-wkr-r7lqs-dcxsn", - "storageUsed": 18268441318 - }, - { - "id": "vm-24262", - "name": "new-cluster-02-pool-cp-kjf4l-65sw2", - "path": "/PG Devlab/vm/mfreitas/new-cluster-02-pool-cp-kjf4l-65sw2", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24262", - "revision": 1341, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] new-cluster-02-pool-cp-kjf4l-65sw2/new-cluster-02-pool-cp-kjf4l-65sw2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:1c:b3", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:1cb3", - "hostName": "new-cluster-02-pool-cp-kjf4l-65sw2", - "storageUsed": 6362315619 - }, - { - "id": "vm-24474", - "name": "new-cluster-03-cp-g22nl-6bf5z", - "path": "/PG Devlab/vm/mfreitas/new-cluster-03-cp-g22nl-6bf5z", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24474", - "revision": 1344, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 9536, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe2] new-cluster-03-cp-g22nl-6bf5z/new-cluster-03-cp-g22nl-6bf5z.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:d2:c7", - "order": 0 - } - ], - "ipAddress": "10.124.139.206", - "hostName": "new-cluster-03-cp-g22nl-6bf5z", - "storageUsed": 18695022635 - }, - { - "id": "vm-24263", - "name": "new-cluster-02-pool-wkr-99h5l-xnfl2", - "path": "/PG Devlab/vm/mfreitas/new-cluster-02-pool-wkr-99h5l-xnfl2", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24263", - "revision": 1341, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] new-cluster-02-pool-wkr-99h5l-xnfl2/new-cluster-02-pool-wkr-99h5l-xnfl2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:d7:c0", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:d7c0", - "hostName": "new-cluster-02-pool-wkr-99h5l-xnfl2", - "storageUsed": 6368605740 - }, - { - "id": "vm-24470", - "name": "new-cluster-03-cp-g22nl-w78bm", - "path": "/PG Devlab/vm/mfreitas/new-cluster-03-cp-g22nl-w78bm", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24470", - "revision": 1343, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 9536, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe2] new-cluster-03-cp-g22nl-w78bm/new-cluster-03-cp-g22nl-w78bm.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:1c:64", - "order": 0 - } - ], - "ipAddress": "10.124.139.220", - "hostName": "new-cluster-03-cp-g22nl-w78bm", - "storageUsed": 22315752921 - }, - { - "id": "vm-24125", - "name": "mfreitas-vm", - "path": "/PG Devlab/vm/mfreitas/mfreitas-vm", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24125", - "revision": 2457, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 16384, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-Local] mfreitas-vm/mfreitas-vm.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2044", - "name": "Mako14-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7953250779136 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:24:b9", - "order": 0 - } - ], - "ipAddress": "10.124.139.18", - "hostName": "mfreitas-vm", - "storageUsed": 46354380354 - }, - { - "id": "vm-24472", - "name": "new-cluster-03-wkr-r7lqs-bwvhs", - "path": "/PG Devlab/vm/mfreitas/new-cluster-03-wkr-r7lqs-bwvhs", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24472", - "revision": 1344, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 9536, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe1] new-cluster-03-wkr-r7lqs-bwvhs/new-cluster-03-wkr-r7lqs-bwvhs.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:c8:bc", - "order": 0 - } - ], - "ipAddress": "10.124.139.156", - "hostName": "new-cluster-03-wkr-r7lqs-bwvhs", - "storageUsed": 18478205249 - }, - { - "id": "vm-24257", - "name": "new-cluster-02-pool-wkr-z6bs2-rhqv7", - "path": "/PG Devlab/vm/mfreitas/new-cluster-02-pool-wkr-z6bs2-rhqv7", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24257", - "revision": 1342, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] new-cluster-02-pool-wkr-z6bs2-rhqv7/new-cluster-02-pool-wkr-z6bs2-rhqv7.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:0a:58", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:a58", - "hostName": "new-cluster-02-pool-wkr-z6bs2-rhqv7", - "storageUsed": 6350565742 - }, - { - "id": "vm-24261", - "name": "new-cluster-02-pool-wkr-z6bs2-94mqv", - "path": "/PG Devlab/vm/mfreitas/new-cluster-02-pool-wkr-z6bs2-94mqv", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24261", - "revision": 1340, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Local] new-cluster-02-pool-wkr-z6bs2-94mqv/new-cluster-02-pool-wkr-z6bs2-94mqv.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2039", - "name": "Mako15-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7828817313792 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:86:a8", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:86a8", - "hostName": "new-cluster-02-pool-wkr-z6bs2-94mqv", - "storageUsed": 6366506851 - }, - { - "id": "vm-24650", - "name": "haffel-test", - "path": "/PG Devlab/vm/haffel/haffel-test", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24650", - "revision": 1626, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 16, - "coresPerSocket": 1, - "memoryMB": 32768, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe2] haffel-test/haffel-test.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 107374182400, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:41:40", - "order": 0 - } - ], - "ipAddress": "10.124.138.243", - "hostName": "ubuntu", - "storageUsed": 70647023292 - }, - { - "id": "vm-26582", - "name": "haffel-custom", - "path": "/PG Devlab/vm/haffel/haffel-custom", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-26582", - "revision": 1484, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe1] haffel-custom/haffel-custom.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:2b:0c", - "order": 0 - } - ], - "ipAddress": "10.124.138.190", - "hostName": "ubuntu", - "storageUsed": 28920455095 - }, - { - "id": "vm-23059", - "name": "windows-ad-deployment-replica-0", - "path": "/PG Devlab/vm/haffel/windows-ad-deployment-replica-0", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-23059", - "revision": 196, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 16, - "coresPerSocket": 1, - "memoryMB": 16384, - "guestName": "Microsoft Windows Server 2022 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] windows-ad-deployment-replica-0/windows-ad-deployment-replica-0.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 85899345920, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:21:fc", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "WIN-BKEUEU8TA02.windows-ad-deployment.ad.com", - "storageUsed": 23344722271 - }, - { - "id": "vm-26515", - "name": "haffel-tiny-rancher", - "path": "/PG Devlab/vm/haffel/haffel-tiny-rancher", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-26515", - "revision": 915, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 16384, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe2] haffel-tiny-rancher/haffel-tiny-rancher.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:6f:82", - "order": 0 - } - ], - "ipAddress": "10.124.139.2", - "hostName": "ubuntu", - "storageUsed": 42308632579 - }, - { - "id": "vm-13876", - "name": "haffel-large-builder", - "path": "/PG Devlab/vm/haffel/haffel-large-builder", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-13876", - "revision": 1841, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 16, - "coresPerSocket": 16, - "memoryMB": 65536, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe2] haffel-large-builder/haffel-large-builder.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 214748364800, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:19:11", - "order": 0 - } - ], - "ipAddress": "10.124.139.63", - "hostName": "ubuntu", - "storageUsed": 232613180912 - }, - { - "id": "vm-24759", - "name": "haffel-custom-node", - "path": "/PG Devlab/vm/haffel/haffel-custom-node", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24759", - "revision": 196, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 16384, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] haffel-custom-node/haffel-custom-node.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:58:e7", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "", - "storageUsed": 11687607654 - }, - { - "id": "vm-24511", - "name": "haffel-virtualbox", - "path": "/PG Devlab/vm/haffel/haffel-virtualbox", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24511", - "revision": 196, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 12, - "coresPerSocket": 1, - "memoryMB": 32768, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe1] haffel-virtualbox/haffel-virtualbox.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2037", - "name": "Mako14-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 466680283136 - }, - "capacity": 322122547200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:2f:cc", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "ubuntu", - "storageUsed": 287336235636 - }, - { - "id": "vm-60079", - "name": "haffel-ci-test", - "path": "/PG Devlab/vm/haffel/haffel-ci-test", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60079", - "revision": 226, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 12, - "coresPerSocket": 1, - "memoryMB": 12288, - "guestName": "Microsoft Windows Server 2022 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe2] haffel-ci-test/haffel-ci-test.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 41943040000, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - }, - { - "id": "vmware.disk_serial.truncated", - "label": "Disk serial numbers may be truncated", - "category": "Information", - "assessment": "This VM is configured with at least one SCSI disk and the disk.EnableUUID parameter is set to TRUE. This may indicate a need for consistent SCSI disk serial numbers, but be advised that these serial numbers will be truncated after migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:cc:f3", - "order": 0 - } - ], - "ipAddress": "172.18.80.1", - "hostName": "", - "storageUsed": 41943313155 - }, - { - "id": "vm-18439", - "name": "sdevadiga-vsphere-rancher-rke2", - "path": "/PG Devlab/vm/sdevadiga/sdevadiga-vsphere-rancher-rke2", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-18439", - "revision": 861, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe2] sdevadiga-vsphere-rancher-rke2_1/sdevadiga-vsphere-rancher-rke2_2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 42949672960, - "bus": "scsi" - }, - { - "key": 2001, - "file": "[Mako15-NVMe2] sdevadiga-vsphere-rancher-rke2_1/sdevadiga-vsphere-rancher-rke2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 1073741824, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:1 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.disk_serial.truncated", - "label": "Disk serial numbers may be truncated", - "category": "Information", - "assessment": "This VM is configured with at least one SCSI disk and the disk.EnableUUID parameter is set to TRUE. This may indicate a need for consistent SCSI disk serial numbers, but be advised that these serial numbers will be truncated after migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:a5:4f", - "order": 0 - } - ], - "ipAddress": "10.124.139.155", - "hostName": "sdevadiga-host", - "storageUsed": 10406721786 - }, - { - "id": "vm-11129", - "name": "sdevadiga-e2e-rke2", - "path": "/PG Devlab/vm/sdevadiga/sdevadiga-e2e-rke2", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-11129", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 16384, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe2] sdevadiga-e2e-rke2/sdevadiga-e2e-rke2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 107374182400, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:69:88", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "sdevadiga-e2e-rke2", - "storageUsed": 106787214518 - }, - { - "id": "vm-12001", - "name": "sdevadiga-csi-test", - "path": "/PG Devlab/vm/sdevadiga/sdevadiga-csi-test", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-12001", - "revision": 1354, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 4, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe2] sdevadiga-csi-test/sdevadiga-csi-test_10.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 42949672960, - "bus": "scsi" - }, - { - "key": 2001, - "file": "[Mako15-NVMe2] sdevadiga-csi-test/sdevadiga-csi-test_13.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2002, - "file": "[Mako15-NVMe2] sdevadiga-csi-test/sdevadiga-csi-test_11.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2003, - "file": "[Mako15-NVMe2] sdevadiga-csi-test/sdevadiga-csi-test_15.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2004, - "file": "[Mako15-NVMe2] sdevadiga-csi-test/sdevadiga-csi-test_20.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2005, - "file": "[Mako15-NVMe2] sdevadiga-csi-test/sdevadiga-csi-test_23.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2006, - "file": "[Mako15-NVMe2] sdevadiga-csi-test/sdevadiga-csi-test_18.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2008, - "file": "[Mako15-NVMe2] sdevadiga-csi-test/sdevadiga-csi-test_8.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2009, - "file": "[Mako15-NVMe2] sdevadiga-csi-test/sdevadiga-csi-test_21.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2010, - "file": "[Mako15-NVMe2] sdevadiga-csi-test/sdevadiga-csi-test_25.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2011, - "file": "[Mako15-NVMe2] sdevadiga-csi-test/sdevadiga-csi-test_27.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2012, - "file": "[Mako15-NVMe2] sdevadiga-csi-test/sdevadiga-csi-test_29.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2013, - "file": "[Mako15-NVMe2] sdevadiga-csi-test/sdevadiga-csi-test_31.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2014, - "file": "[Mako15-NVMe2] sdevadiga-csi-test/sdevadiga-csi-test.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2015, - "file": "[Mako15-NVMe2] sdevadiga-csi-test/sdevadiga-csi-test_32.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2016, - "file": "[Mako15-NVMe1] fcd/afc77fc201654b18a6b9cd1905345e91.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 1073741824, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:1 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:10 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:11 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:12 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:13 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:14 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:15 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:2 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:3 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:4 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:5 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:6 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:8 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:9 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.disk_serial.truncated", - "label": "Disk serial numbers may be truncated", - "category": "Information", - "assessment": "This VM is configured with at least one SCSI disk and the disk.EnableUUID parameter is set to TRUE. This may indicate a need for consistent SCSI disk serial numbers, but be advised that these serial numbers will be truncated after migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:91:08", - "order": 0 - } - ], - "ipAddress": "10.124.139.186", - "hostName": "sdevadiga-csi-test", - "storageUsed": 19763643544 - }, - { - "id": "vm-11124", - "name": "sdevadigarancher", - "path": "/PG Devlab/vm/sdevadiga/sdevadigarancher", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-11124", - "revision": 68, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe1] sdevadigarancher/sdevadigarancher.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:72:17", - "order": 0 - } - ], - "ipAddress": "10.124.139.10", - "hostName": "shyrancher", - "storageUsed": 62368396919 - }, - { - "id": "vm-26410", - "name": "sdevadiga-rancher-vsphere", - "path": "/PG Devlab/vm/sdevadiga/sdevadiga-rancher-vsphere", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-26410", - "revision": 1346, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe1] sdevadiga-rancher-vsphere/sdevadiga-rancher-vsphere.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.disk_serial.truncated", - "label": "Disk serial numbers may be truncated", - "category": "Information", - "assessment": "This VM is configured with at least one SCSI disk and the disk.EnableUUID parameter is set to TRUE. This may indicate a need for consistent SCSI disk serial numbers, but be advised that these serial numbers will be truncated after migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:80:5a", - "order": 0 - } - ], - "ipAddress": "10.124.139.227", - "hostName": "sdevadiga-rancher", - "storageUsed": 40337375869 - }, - { - "id": "vm-11128", - "name": "sdevadiga-e2e-k3s", - "path": "/PG Devlab/vm/sdevadiga/sdevadiga-e2e-k3s", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-11128", - "revision": 2978, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 32768, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe1] sdevadiga-e2e-k3s/sdevadiga-e2e-k3s.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2037", - "name": "Mako14-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 466680283136 - }, - "capacity": 128849018880, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:f8:a2", - "order": 0 - } - ], - "ipAddress": "10.124.139.235", - "hostName": "sdevadiga-e2e-k3s", - "storageUsed": 162920556777 - }, - { - "id": "vm-16438", - "name": "sdevadiga-demo", - "path": "/PG Devlab/vm/sdevadiga/sdevadiga-demo", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-16438", - "revision": 1561, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 4, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-Local] sdevadiga-demo/sdevadiga-demo.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2043", - "name": "Mako13-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7444761673728 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.disk_serial.truncated", - "label": "Disk serial numbers may be truncated", - "category": "Information", - "assessment": "This VM is configured with at least one SCSI disk and the disk.EnableUUID parameter is set to TRUE. This may indicate a need for consistent SCSI disk serial numbers, but be advised that these serial numbers will be truncated after migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:78:7a", - "order": 0 - } - ], - "ipAddress": "10.124.139.202", - "hostName": "sdevadiga-demo", - "storageUsed": 12317952625 - }, - { - "id": "vm-24729", - "name": "sdg-test", - "path": "/PG Devlab/vm/sgartner/sdg-test", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24729", - "revision": 1493, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] sdg-test/sdg-test.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:01:d5", - "order": 0 - } - ], - "ipAddress": "10.124.139.21", - "hostName": "ubuntu", - "storageUsed": 11874949238 - }, - { - "id": "vm-60399", - "name": "sdg-rancher1", - "path": "/PG Devlab/vm/sgartner/sdg-rancher1", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60399", - "revision": 2734, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] sdg-rancher1/sdg-rancher1.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:3c:6d", - "order": 0 - } - ], - "ipAddress": "10.124.138.253", - "hostName": "ubuntu", - "storageUsed": 30219132646 - }, - { - "id": "vm-60400", - "name": "sdg-rancher2", - "path": "/PG Devlab/vm/sgartner/sdg-rancher2", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60400", - "revision": 2437, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] sdg-rancher2/sdg-rancher2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:f3:6e", - "order": 0 - } - ], - "ipAddress": "10.124.139.207", - "hostName": "ubuntu", - "storageUsed": 29881487316 - }, - { - "id": "vm-60401", - "name": "sdg-rancher3", - "path": "/PG Devlab/vm/sgartner/sdg-rancher3", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60401", - "revision": 2954, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] sdg-rancher3/sdg-rancher3.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:71:21", - "order": 0 - } - ], - "ipAddress": "10.124.138.222", - "hostName": "ubuntu", - "storageUsed": 32136975779 - }, - { - "id": "vm-1019", - "name": "VMware vCenter Server", - "path": "/PG Devlab/vm/Discovered virtual machine/VMware vCenter Server", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-1019", - "revision": 1526, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 21504, - "guestName": "Other 3.x or later Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - }, - { - "kind": "Network", - "id": "dvportgroup-5005", - "name": "mgmt", - "variant": "DvPortGroup", - "vlanId": "" - }, - { - "kind": "Network", - "id": "dvportgroup-6001", - "name": "vCenter-HA", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe1] VMware vCenter Server/VMware vCenter Server.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 52143587328, - "bus": "scsi" - }, - { - "key": 2001, - "file": "[Mako15-NVMe1] VMware vCenter Server/VMware vCenter Server_1.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 7389315072, - "bus": "scsi" - }, - { - "key": 2002, - "file": "[Mako15-NVMe1] VMware vCenter Server/VMware vCenter Server_2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 26843545600, - "bus": "scsi" - }, - { - "key": 2003, - "file": "[Mako15-NVMe1] VMware vCenter Server/VMware vCenter Server_3.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 53687091200, - "bus": "scsi" - }, - { - "key": 2004, - "file": "[Mako15-NVMe1] VMware vCenter Server/VMware vCenter Server_4.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 10737418240, - "bus": "scsi" - }, - { - "key": 2005, - "file": "[Mako15-NVMe1] VMware vCenter Server/VMware vCenter Server_5.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 10737418240, - "bus": "scsi" - }, - { - "key": 2006, - "file": "[Mako15-NVMe1] VMware vCenter Server/VMware vCenter Server_6.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 16106127360, - "bus": "scsi" - }, - { - "key": 2008, - "file": "[Mako15-NVMe1] VMware vCenter Server/VMware vCenter Server_7.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 26843545600, - "bus": "scsi" - }, - { - "key": 2009, - "file": "[Mako15-NVMe1] VMware vCenter Server/VMware vCenter Server_8.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 1073741824, - "bus": "scsi" - }, - { - "key": 2010, - "file": "[Mako15-NVMe1] VMware vCenter Server/VMware vCenter Server_9.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 10737418240, - "bus": "scsi" - }, - { - "key": 2011, - "file": "[Mako15-NVMe1] VMware vCenter Server/VMware vCenter Server_10.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 10737418240, - "bus": "scsi" - }, - { - "key": 2012, - "file": "[Mako15-NVMe1] VMware vCenter Server/VMware vCenter Server_11.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 107374182400, - "bus": "scsi" - }, - { - "key": 2013, - "file": "[Mako15-NVMe1] VMware vCenter Server/VMware vCenter Server_12.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 53687091200, - "bus": "scsi" - }, - { - "key": 2014, - "file": "[Mako15-NVMe1] VMware vCenter Server/VMware vCenter Server_13.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 26843545600, - "bus": "scsi" - }, - { - "key": 2015, - "file": "[Mako15-NVMe1] VMware vCenter Server/VMware vCenter Server_14.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 16106127360, - "bus": "scsi" - }, - { - "key": 2016, - "file": "[Mako15-NVMe1] VMware vCenter Server/VMware vCenter Server_15.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 107374182400, - "bus": "scsi" - }, - { - "key": 2017, - "file": "[Mako15-NVMe1] VMware vCenter Server/VMware vCenter Server_16.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 214748364800, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:1 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:10 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:11 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:12 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:13 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:14 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:15 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:2 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:3 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:4 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:5 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:6 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:8 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:9 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.cpu_memory.hotplug.enabled", - "label": "CPU/Memory hotplug detected", - "category": "Warning", - "assessment": "Hot pluggable CPU or memory is not currently supported by Migration Toolkit for Virtualization. You can reconfigure CPU or memory after migration." - }, - { - "id": "vmware.vm.name.invalid", - "label": "Invalid VM Name", - "category": "Warning", - "assessment": "The VM name does not comply with the DNS subdomain name format. Edit the name or it will be renamed automatically during the migration to meet RFC 1123. The VM name must be a maximum of 63 characters containing lowercase letters (a-z), numbers (0-9), periods (.), and hyphens (-). The first and last character must be a letter or number. The name cannot contain uppercase letters, spaces or special characters." - }, - { - "id": "vmware.os.unsupported", - "label": "Unsupported operating system detected", - "category": "Warning", - "assessment": "The guest operating system is not currently supported by the Migration Toolkit for Virtualization" - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:0c:29:98:5e:35", - "order": 0 - }, - { - "network": { - "kind": "Network", - "id": "dvportgroup-6001" - }, - "mac": "00:0c:29:98:5e:3f", - "order": 1 - }, - { - "network": { - "kind": "Network", - "id": "dvportgroup-5005" - }, - "mac": "00:50:56:93:f5:e9", - "order": 2 - }, - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:5e:83", - "order": 3 - } - ], - "ipAddress": "10.124.138.151", - "hostName": "mako-vcenter.devlab.pgu1.suse.com", - "storageUsed": 200527394760 - }, - { - "id": "vm-17215", - "name": "cluster-vsphere-rke2-q99tgl-pf2z5-kcgkv", - "path": "/PG Devlab/vm/turtles-ci/cluster-vsphere-rke2-q99tgl-pf2z5-kcgkv", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-17215", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 2, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe2] cluster-vsphere-rke2-q99tgl-pf2z5-kcgkv/cluster-vsphere-rke2-q99tgl-pf2z5-kcgkv.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 26843545600, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - }, - { - "id": "vmware.disk_serial.truncated", - "label": "Disk serial numbers may be truncated", - "category": "Information", - "assessment": "This VM is configured with at least one SCSI disk and the disk.EnableUUID parameter is set to TRUE. This may indicate a need for consistent SCSI disk serial numbers, but be advised that these serial numbers will be truncated after migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:93:94", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "", - "storageUsed": 26843570610 - }, - { - "id": "vm-17216", - "name": "cluster-vsphere-kubeadm-jgi1v9-z5bxn-stllq", - "path": "/PG Devlab/vm/turtles-ci/cluster-vsphere-kubeadm-jgi1v9-z5bxn-stllq", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-17216", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 2, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe2] cluster-vsphere-kubeadm-jgi1v9-z5bxn-stllq/cluster-vsphere-kubeadm-jgi1v9-z5bxn-stllq.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 26843545600, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - }, - { - "id": "vmware.disk_serial.truncated", - "label": "Disk serial numbers may be truncated", - "category": "Information", - "assessment": "This VM is configured with at least one SCSI disk and the disk.EnableUUID parameter is set to TRUE. This may indicate a need for consistent SCSI disk serial numbers, but be advised that these serial numbers will be truncated after migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:71:19", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "", - "storageUsed": 26843573257 - }, - { - "id": "vm-22036", - "name": "ubuntu-2404-kube-v1.33.5", - "path": "/PG Devlab/vm/turtles-ci/ubuntu-2404-kube-v1.33.5", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-22036", - "revision": 4, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe1] ubuntu-2404-kube-v1.33.5/ubuntu-2404-kube-v1.33.5.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 21474836480, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:8a:2e", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "localhost.local", - "storageUsed": 4268765227 - }, - { - "id": "vm-22037", - "name": "ubuntu-2404-kube-v1.34.1", - "path": "/PG Devlab/vm/turtles-ci/ubuntu-2404-kube-v1.34.1", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-22037", - "revision": 6, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe2] ubuntu-2404-kube-v1.34.1/ubuntu-2404-kube-v1.34.1.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 21474836480, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:a5:9b", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "localhost.local", - "storageUsed": 4225773611 - }, - { - "id": "vm-19039", - "name": "mr-new-new", - "path": "/PG Devlab/vm/gmehta/mr-new-new", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-19039", - "revision": 196, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 2048, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - }, - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] mr-new-new/mr-new-new.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 10737418240, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:51:ca", - "order": 0 - }, - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:fd:e7", - "order": 1 - } - ], - "ipAddress": "", - "hostName": "eeee", - "storageUsed": 10737431314 - }, - { - "id": "vm-13007", - "name": "gm-ubuntu-test", - "path": "/PG Devlab/vm/gmehta/gm-ubuntu-test", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-13007", - "revision": 4, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-13025", - "name": "DSwitch-vCenter-HA-VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe1] gm-ubuntu-test/gm-ubuntu-test-000001.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 42949672960, - "bus": "scsi" - }, - { - "key": 2001, - "file": "[Mako15-NVMe1] gm-ubuntu-test/gm-ubuntu-test_1.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 5368709120, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:1 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.snapshot.detected", - "label": "VM snapshot detected", - "category": "Information", - "assessment": "Online snapshots are not currently supported by OpenShift Virtualization. VM will be migrated with current snapshot." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-13025" - }, - "mac": "00:50:56:93:36:2b", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "ubuntu", - "storageUsed": 8708302641 - }, - { - "id": "vm-19028", - "name": "mr-scsi-bus", - "path": "/PG Devlab/vm/gmehta/mr-scsi-bus", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-19028", - "revision": 4, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 2048, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "network-12022", - "name": "vCenter-HA-Management", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Spinner1] mr-scsi-bus/mr-scsi-bus.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2045", - "name": "Mako15-Spinner1", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7883079024640 - }, - "capacity": 10737418240, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-12022" - }, - "mac": "00:50:56:93:4d:ca", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "", - "storageUsed": 10737514559 - }, - { - "id": "vm-13626", - "name": "mr-test2", - "path": "/PG Devlab/vm/gmehta/mr-test2", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-13626", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Other Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-12021", - "name": "vCenter-HA-VM-Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe1] mr-test2/mr-test2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-12021" - }, - "mac": "00:50:56:93:50:22", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "", - "storageUsed": 42950540216 - }, - { - "id": "vm-16766", - "name": "test-efi-secure-buntu", - "path": "/PG Devlab/vm/gmehta/test-efi-secure-buntu", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-16766", - "revision": 196, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "network-12022", - "name": "vCenter-HA-Management", - "variant": "Standard", - "vlanId": "" - }, - { - "kind": "Network", - "id": "dvportgroup-13023", - "name": "DSwitch-vCenter-HA-Management", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] test-efi-secure-buntu/test-efi-secure-buntu.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-12022" - }, - "mac": "00:50:56:93:c2:8c", - "order": 0 - }, - { - "network": { - "kind": "Network", - "id": "dvportgroup-13023" - }, - "mac": "00:50:56:93:86:61", - "order": 1 - } - ], - "ipAddress": "", - "hostName": "test-efi-secure-buntu", - "storageUsed": 53687628221 - }, - { - "id": "vm-13101", - "name": "opensuse-server-iso", - "path": "/PG Devlab/vm/gmehta/opensuse-server-iso", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-13101", - "revision": 257, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 4, - "memoryMB": 16384, - "guestName": "SUSE openSUSE (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe1] opensuse-server-iso/opensuse-server-iso.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2037", - "name": "Mako14-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 466680283136 - }, - "capacity": 42949672960, - "bus": "scsi" - }, - { - "key": 2001, - "file": "[Mako14-NVMe1] opensuse-server-iso/opensuse-server-iso_1.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2037", - "name": "Mako14-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 466680283136 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:1 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:c9:a4", - "order": 0 - } - ], - "ipAddress": "10.124.139.137", - "hostName": "dyn-3-137", - "storageUsed": 103171335770 - }, - { - "id": "vm-60531", - "name": "w11-migration-test", - "path": "/PG Devlab/vm/gmehta/w11-migration-test", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60531", - "revision": 196, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 16384, - "guestName": "Microsoft Windows 11 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] w11-migration-test/w11-migration-test.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 103079215104, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.tpm.detected", - "label": "TPM detected", - "category": "Warning", - "assessment": "The VM is configured with a TPM device. TPM data will not be transferred during the migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:52:29", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "DESKTOP-OTVTJUI", - "storageUsed": 103079259988 - }, - { - "id": "vm-13625", - "name": "vt-ubuntu-test-foo-bar-foo-bar-baz-aaa-bbb-ccc-ddd-eee-fff", - "path": "/PG Devlab/vm/gmehta/vt-ubuntu-test-foo-bar-foo-bar-baz-aaa-bbb-ccc-ddd-eee-fff", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-13625", - "revision": 196, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Other Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-12021", - "name": "vCenter-HA-VM-Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe1] vt-ubuntu-test-foo-bar-foo-bar-baz-aaa-bbb-ccc-ddd-eee-fff/vt-ubuntu-test-foo-bar-foo-bar-baz-aaa-bbb-ccc-ddd-eee-fff.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2037", - "name": "Mako14-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 466680283136 - }, - "capacity": 21474836480, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-12021" - }, - "mac": "00:50:56:93:77:b0", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "", - "storageUsed": 21475580579 - }, - { - "id": "vm-14219", - "name": "testalma9nvme", - "path": "/PG Devlab/vm/gmehta/testalma9nvme", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-14219", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Red Hat Enterprise Linux 8 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-13024", - "name": "DSwitch-vCenter-HA-Witness", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 32000, - "file": "[Mako13-Local] testalma9lsi/testalma9lsi.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2043", - "name": "Mako13-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7444761673728 - }, - "capacity": 21474836480, - "bus": "nvme" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - nvme0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.disk.nvme.detected", - "label": "Disk NVMe was detcted", - "category": "Critical", - "assessment": "NVMe disks are not currently supported by MTV. The VM cannot be migrated" - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-13024" - }, - "mac": "00:50:56:93:2f:0c", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "", - "storageUsed": 21475154046 - }, - { - "id": "vm-16565", - "name": "khushal-rancherv2110", - "path": "/PG Devlab/vm/khushal/khushal-rancherv2110", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-16565", - "revision": 1488, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 12288, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] khushal-rancherv2110/khushal-rancherv2110.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:1d:15", - "order": 0 - } - ], - "ipAddress": "10.124.139.75", - "hostName": "ubuntu", - "storageUsed": 55386279582 - }, - { - "id": "vm-17452", - "name": "test-pool1-dkvv5-4vgwl", - "path": "/PG Devlab/vm/khushal/test-pool1-dkvv5-4vgwl", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-17452", - "revision": 1561, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 2, - "memoryMB": 4096, - "guestName": "Other Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Content Library Datastore] test-pool1-dkvv5-4vgwl/test-pool1-dkvv5-4vgwl.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-16879", - "name": "Content Library Datastore", - "type": "NFS41", - "capacity": 65542688866304, - "free": 65166035648512 - }, - "capacity": 20971520000, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:07:2c", - "order": 0 - } - ], - "ipAddress": "fe80::250:56ff:fe93:72c", - "hostName": "rancher", - "storageUsed": 855206850 - }, - { - "id": "vm-13078", - "name": "khushal-gitlabserver", - "path": "/PG Devlab/vm/khushal/khushal-gitlabserver", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-13078", - "revision": 4, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-Spinner1] khushal-gitlabserver/khushal-gitlabserver.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2045", - "name": "Mako15-Spinner1", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7883079024640 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:1c:23", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "ubuntu", - "storageUsed": 31744845733 - }, - { - "id": "vm-13034", - "name": "khushal-rancher", - "path": "/PG Devlab/vm/khushal/khushal-rancher", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-13034", - "revision": 1348, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 6, - "coresPerSocket": 1, - "memoryMB": 16384, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe1] khushal-rancher/khushal-rancher.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 85899345920, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:ca:e9", - "order": 0 - } - ], - "ipAddress": "10.124.139.6", - "hostName": "ubuntu", - "storageUsed": 102582526884 - }, - { - "id": "vm-23409", - "name": "openSUSE-MicroOS-ContainerHost-251128-vm", - "path": "/PG Devlab/vm/thehejik/openSUSE-MicroOS-ContainerHost-251128-vm", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-23409", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 16384, - "guestName": "SUSE Linux Enterprise 16 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [], - "concerns": [ - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:95:05", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "", - "storageUsed": 655268485 - }, - { - "id": "vm-24538", - "name": "turtles-github-runner-node-0", - "path": "/PG Devlab/vm/thehejik/turtles-github-runner-node-0", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24538", - "revision": 1697, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 16384, - "guestName": "SUSE Linux Enterprise 16 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe1] turtles-github-runner-node-0/turtles-github-runner-node-0.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2037", - "name": "Mako14-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 466680283136 - }, - "capacity": 107374182400, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:17:bf", - "order": 0 - } - ], - "ipAddress": "10.124.139.110", - "hostName": "dyn-3-110.devlab.pgu1.suse.com", - "storageUsed": 44977896897 - }, - { - "id": "vm-23568", - "name": "rancher-turtles-e2e-github-runner-node-0", - "path": "/PG Devlab/vm/thehejik/rancher-turtles-e2e-github-runner-node-0", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-23568", - "revision": 1514, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 16384, - "guestName": "SUSE Linux Enterprise 16 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe2] rancher-turtles-e2e-github-runner-node-0/rancher-turtles-e2e-github-runner-node-0.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 107374182400, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:c0:6c", - "order": 0 - } - ], - "ipAddress": "10.124.139.176", - "hostName": "dyn-3-176.devlab.pgu1.suse.com", - "storageUsed": 58949123273 - }, - { - "id": "vm-12063", - "name": "th-ubuntu-2404", - "path": "/PG Devlab/vm/thehejik/th-ubuntu-2404", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-12063", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 16384, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe2] th-ubuntu-2404/th-ubuntu-2404.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 85899345920, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:3d:18", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "ubuntu", - "storageUsed": 20801398099 - }, - { - "id": "vm-24867", - "name": "mkravec-github-runner-kubewarden-node-0", - "path": "/PG Devlab/vm/thehejik/mkravec-github-runner-kubewarden-node-0", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24867", - "revision": 1513, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 6, - "coresPerSocket": 1, - "memoryMB": 24576, - "guestName": "SUSE Linux Enterprise 16 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] mkravec-github-runner-kubewarden-node-0/mkravec-github-runner-kubewarden-node-0.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 64424509440, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:94:22", - "order": 0 - } - ], - "ipAddress": "10.124.139.56", - "hostName": "dyn-3-056.devlab.pgu1.suse.com", - "storageUsed": 47555296128 - }, - { - "id": "vm-12092", - "name": "th-leap-node-0", - "path": "/PG Devlab/vm/thehejik/th-leap-node-0", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-12092", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 16384, - "guestName": "Other 4.x Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe1] th-leap-node-0/th-leap-node-0.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:f6:88", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "dyn-3-201", - "storageUsed": 53687367835 - }, - { - "id": "vm-13493", - "name": "ctw-jenkins-vpn", - "path": "/PG Devlab/vm/cwarren/ctw-jenkins-vpn", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-13493", - "revision": 1410, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 16, - "coresPerSocket": 1, - "memoryMB": 16384, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe1] ctw-jenkins-vpn/ctw-jenkins-vpn.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2040", - "name": "Mako15-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 380083634176 - }, - "capacity": 214748364800, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:49:46", - "order": 0 - } - ], - "ipAddress": "10.124.139.141", - "hostName": "ctw-jenkins-vpn", - "storageUsed": 190915646480 - }, - { - "id": "vm-21118", - "name": "ctw-jenkins-staging-vpn", - "path": "/PG Devlab/vm/cwarren/ctw-jenkins-staging-vpn", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-21118", - "revision": 1568, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 16384, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe2] ctw-jenkins-staging-vpn/ctw-jenkins-staging-vpn.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 322122547200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:12:a8", - "order": 0 - } - ], - "ipAddress": "10.124.139.43", - "hostName": "ctw-jenk-staging", - "storageUsed": 47834668288 - }, - { - "id": "vm-18609", - "name": "jiaqi-test-server1", - "path": "/PG Devlab/vm/jiaqi-vms/jiaqi-test-server1", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-18609", - "revision": 4, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 16384, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe2] jiaqi-test-server1/jiaqi-test-server1.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 322122547200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:87:49", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "dyn-3-000.devlab.pgu1.suse.com", - "storageUsed": 322123120586 - }, - { - "id": "vm-16230", - "name": "isa-new-image-pool1-x9mvg-dhtms", - "path": "/PG Devlab/vm/Upstream-VM-Ready/isa-new-image-pool1-x9mvg-dhtms", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-16230", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 4, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Content Library Datastore-DEAD] isa-new-image-pool1-x9mvg-dhtms/isa-new-image-pool1-x9mvg-dhtms.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-14753", - "name": "Content Library Datastore-DEAD", - "type": "NFS41", - "capacity": 76523271618560, - "free": 76438520856576 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:bb:e0", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "isa-new-image-pool1-x9mvg-dhtms", - "storageUsed": 0 - }, - { - "id": "vm-16265", - "name": "vsphere-provider-pool1-ng8tf-8cspw", - "path": "/PG Devlab/vm/Upstream-VM-Ready/vsphere-provider-pool1-ng8tf-8cspw", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-16265", - "revision": 196, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 4, - "memoryMB": 4096, - "guestName": "", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Content Library Datastore-DEAD] vsphere-provider-pool1-ng8tf-8cspw/vsphere-provider-pool1-ng8tf-8cspw.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-14753", - "name": "Content Library Datastore-DEAD", - "type": "NFS41", - "capacity": 76523271618560, - "free": 76438520856576 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:cc:2d", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "vsphere-provider-pool1-ng8tf-8cspw", - "storageUsed": 0 - }, - { - "id": "vm-16330", - "name": "vsphere-provider-pool1-ng8tf-cz284", - "path": "/PG Devlab/vm/Upstream-VM-Ready/vsphere-provider-pool1-ng8tf-cz284", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-16330", - "revision": 196, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 4, - "memoryMB": 4096, - "guestName": "", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Content Library Datastore-DEAD] vsphere-provider-pool1-ng8tf-cz284/vsphere-provider-pool1-ng8tf-cz284.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-14753", - "name": "Content Library Datastore-DEAD", - "type": "NFS41", - "capacity": 76523271618560, - "free": 76438520856576 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:b5:e9", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "vsphere-provider-pool1-ng8tf-cz284", - "storageUsed": 0 - }, - { - "id": "vm-16205", - "name": "isa-new-image-pool1-x9mvg-hgzsx", - "path": "/PG Devlab/vm/Upstream-VM-Ready/isa-new-image-pool1-x9mvg-hgzsx", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-16205", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 4, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Content Library Datastore-DEAD] isa-new-image-pool1-x9mvg-hgzsx/isa-new-image-pool1-x9mvg-hgzsx.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-14753", - "name": "Content Library Datastore-DEAD", - "type": "NFS41", - "capacity": 76523271618560, - "free": 76438520856576 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:fe:07", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "isa-new-image-pool1-x9mvg-hgzsx", - "storageUsed": 0 - }, - { - "id": "vm-16315", - "name": "vsphere-provider-pool1-ng8tf-c9vr4", - "path": "/PG Devlab/vm/Upstream-VM-Ready/vsphere-provider-pool1-ng8tf-c9vr4", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-16315", - "revision": 196, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 4, - "memoryMB": 4096, - "guestName": "", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Content Library Datastore-DEAD] vsphere-provider-pool1-ng8tf-c9vr4/vsphere-provider-pool1-ng8tf-c9vr4.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-14753", - "name": "Content Library Datastore-DEAD", - "type": "NFS41", - "capacity": 76523271618560, - "free": 76438520856576 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:cf:d8", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "vsphere-provider-pool1-ng8tf-c9vr4", - "storageUsed": 0 - }, - { - "id": "vm-16199", - "name": "isa-new-image-pool1-x9mvg-ps58r", - "path": "/PG Devlab/vm/Upstream-VM-Ready/isa-new-image-pool1-x9mvg-ps58r", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-16199", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 4, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "network-1017", - "name": "VM Network", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Content Library Datastore-DEAD] isa-new-image-pool1-x9mvg-ps58r/isa-new-image-pool1-x9mvg-ps58r.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-14753", - "name": "Content Library Datastore-DEAD", - "type": "NFS41", - "capacity": 76523271618560, - "free": 76438520856576 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-1017" - }, - "mac": "00:50:56:93:69:7e", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "isa-new-image-pool1-x9mvg-ps58r", - "storageUsed": 0 - }, - { - "id": "vm-14382", - "name": "cp-leap-node-0", - "path": "/PG Devlab/vm/cpinjani/cp-leap-node-0", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-14382", - "revision": 265, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Other 4.x Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe1] cp-leap-node-0/cp-leap-node-0.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2037", - "name": "Mako14-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 466680283136 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:20:e5", - "order": 0 - } - ], - "ipAddress": "10.124.139.5", - "hostName": "dyn-3-005", - "storageUsed": 62367480981 - }, - { - "id": "vm-24999", - "name": "sles15test", - "path": "/PG Devlab/vm/distros-qa/sles15test", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24999", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 6, - "coresPerSocket": 1, - "memoryMB": 24576, - "guestName": "SUSE Linux Enterprise 15 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Content Library Datastore] sles15test/sles15test.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-16879", - "name": "Content Library Datastore", - "type": "NFS41", - "capacity": 65542688866304, - "free": 65166035648512 - }, - "capacity": 268435456000, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:ec:9d", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "dyn-3-241", - "storageUsed": 44384161635 - }, - { - "id": "vm-24491", - "name": "e2e-tests", - "path": "/PG Devlab/vm/distros-qa/e2e-tests", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24491", - "revision": 1317, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 6, - "coresPerSocket": 6, - "memoryMB": 24576, - "guestName": "SUSE Linux Enterprise 15 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe1] e2e-tests/e2e-tests.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 429496729600, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:cc:ab", - "order": 0 - } - ], - "ipAddress": "10.124.138.245", - "hostName": "dyn-2-245", - "storageUsed": 455362070667 - }, - { - "id": "vm-26605", - "name": "ui-qa-prime-3", - "path": "/PG Devlab/vm/isasih/ui-qa-prime-3", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-26605", - "revision": 282, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 2, - "memoryMB": 8192, - "guestName": "Amazon Linux 2 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5005", - "name": "mgmt", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe2] ui-qa-prime-3/ui-qa-prime-3.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5005" - }, - "mac": "00:50:56:93:0f:10", - "order": 0 - } - ], - "ipAddress": "10.124.139.81", - "hostName": "rancher-admin-3", - "storageUsed": 51626122906 - }, - { - "id": "vm-26604", - "name": "ui-qa-prime-2", - "path": "/PG Devlab/vm/isasih/ui-qa-prime-2", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-26604", - "revision": 63, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 2, - "memoryMB": 8192, - "guestName": "Amazon Linux 2 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5005", - "name": "mgmt", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe2] ui-qa-prime2/ui-qa-prime2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5005" - }, - "mac": "00:50:56:93:1f:69", - "order": 0 - } - ], - "ipAddress": "10.124.139.80", - "hostName": "rancher-admin-2", - "storageUsed": 51626119744 - }, - { - "id": "vm-25146", - "name": "ui-qa-prime", - "path": "/PG Devlab/vm/isasih/ui-qa-prime", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-25146", - "revision": 267, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 2, - "memoryMB": 8192, - "guestName": "Amazon Linux 2 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe1] ui-qa-prime/ui-qa-prime.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2037", - "name": "Mako14-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 466680283136 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:b1:84", - "order": 0 - } - ], - "ipAddress": "10.124.139.79", - "hostName": "ui-qa-prime-1", - "storageUsed": 51626110133 - }, - { - "id": "vm-25015", - "name": "ui-qa-prime-node2", - "path": "/PG Devlab/vm/UI-QA/ui-qa-prime-node2", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-25015", - "revision": 1559, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Other 2.6.x Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5005", - "name": "mgmt", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe1] ui-qa-release-testing-cluster-pool1-tzgdt-brvcx/ui-qa-release-testing-cluster-pool1-tzgdt-brvcx.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5005" - }, - "mac": "00:50:56:93:71:23", - "order": 0 - } - ], - "ipAddress": "10.124.139.58", - "hostName": "ui-qa-release-testing-cluster-pool1-tzgdt-brvcx", - "storageUsed": 7445553205 - }, - { - "id": "vm-25080", - "name": "ui-qa-community", - "path": "/PG Devlab/vm/UI-QA/ui-qa-community", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-25080", - "revision": 196, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] ui-qa-community/ui-qa-community.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:21:9e", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "ui-qa-community", - "storageUsed": 3009705397 - }, - { - "id": "vm-25016", - "name": "ui-qa-prime-node1", - "path": "/PG Devlab/vm/UI-QA/ui-qa-prime-node1", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-25016", - "revision": 1559, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Other 2.6.x Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5005", - "name": "mgmt", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe1] ui-qa-prime-node1/ui-qa-prime-node1.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5005" - }, - "mac": "00:50:56:93:86:77", - "order": 0 - } - ], - "ipAddress": "10.124.138.215", - "hostName": "ui-qa-release-testing-cluster-pool1-tzgdt-9bfqx", - "storageUsed": 7489841417 - }, - { - "id": "vm-25014", - "name": "ui-qa-prime-node3", - "path": "/PG Devlab/vm/UI-QA/ui-qa-prime-node3", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-25014", - "revision": 1559, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Other 2.6.x Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5005", - "name": "mgmt", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe1] ui-qa-release-testing-cluster-pool1-tzgdt-lbwvb/ui-qa-release-testing-cluster-pool1-tzgdt-lbwvb.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5005" - }, - "mac": "00:50:56:93:18:7b", - "order": 0 - } - ], - "ipAddress": "10.124.139.109", - "hostName": "ui-qa-release-testing-cluster-pool1-tzgdt-lbwvb", - "storageUsed": 7503217303 - }, - { - "id": "vm-60324", - "name": "bun-3-nic-bios", - "path": "/PG Devlab/vm/mruss/bun-3-nic-bios", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60324", - "revision": 196, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe1] bun-3-nic/bun-3-nic.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2037", - "name": "Mako14-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 466680283136 - }, - "capacity": 37580963840, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:49:e8", - "order": 0 - }, - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:ee:e5", - "order": 1 - }, - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:bd:a7", - "order": 2 - } - ], - "ipAddress": "", - "hostName": "", - "storageUsed": 37580975684 - }, - { - "id": "vm-60325", - "name": "bun-multi-disk-efi-no-nic", - "path": "/PG Devlab/vm/mruss/bun-multi-disk-efi-no-nic", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60325", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "efi", - "networks": [], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe1] bun-multi-disk-efi-no-nic/bun-multi-disk-efi-no-nic.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 26843545600, - "bus": "scsi" - }, - { - "key": 2001, - "file": "[Mako13-NVMe1] bun-multi-disk-efi-no-nic/bun-multi-disk-efi-no-nic_1.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 2147483648, - "bus": "scsi" - }, - { - "key": 2002, - "file": "[Mako13-NVMe1] bun-multi-disk-efi-no-nic/bun-multi-disk-efi-no-nic_2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 1073741824, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:1 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:2 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - } - ], - "nics": [], - "ipAddress": "", - "hostName": "", - "storageUsed": 30065046635 - }, - { - "id": "vm-60434", - "name": "bun-sata-scsi-no-nic", - "path": "/PG Devlab/vm/mruss/bun-sata-scsi-no-nic", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60434", - "revision": 196, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 2048, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "efi", - "networks": [], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe1] bun-sata-scsi-no-nic/bun-sata-scsi-no-nic.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2037", - "name": "Mako14-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 466680283136 - }, - "capacity": 26843545600, - "bus": "scsi" - }, - { - "key": 16030, - "file": "[Mako14-NVMe1] bun-sata-scsi-no-nic/bun-sata-scsi-no-nic_1.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2037", - "name": "Mako14-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 466680283136 - }, - "capacity": 9663676416, - "bus": "sata" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - sata%!d(float64=8.881784197001252e-16):0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - } - ], - "nics": [], - "ipAddress": "", - "hostName": "", - "storageUsed": 36507495932 - }, - { - "id": "vm-60326", - "name": "bun-efi-sec-one-nic", - "path": "/PG Devlab/vm/mruss/bun-efi-sec-one-nic", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60326", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe1] bun-efi-sec-one-nic/bun-efi-sec-one-nic.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 26843545600, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:0e:1f", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "bun-efi-sec-one-nic", - "storageUsed": 26843819365 - }, - { - "id": "vm-60327", - "name": "bun-sata-bus-two-nic-efi", - "path": "/PG Devlab/vm/mruss/bun-sata-bus-two-nic-efi", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60327", - "revision": 224, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 16001, - "file": "[Mako13-NVMe2] bun-sata-bus-two-nic-efi/bun-sata-bus-two-nic-efi.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 26843545600, - "bus": "sata" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - sata0:1 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:e7:aa", - "order": 0 - }, - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:54:08", - "order": 1 - } - ], - "ipAddress": "", - "hostName": "bun-sata-bus-two-nic-efi", - "storageUsed": 26843820673 - }, - { - "id": "vm-60328", - "name": "bun-nvme-sata-scsi-sec-boot-one-nic", - "path": "/PG Devlab/vm/mruss/bun-nvme-sata-scsi-sec-boot-one-nic", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60328", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 4096, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 32000, - "file": "[Mako13-NVMe1] bun-nvme-sata-scisi-sec-boot-one-nic/bun-nvme-sata-scisi-sec-boot-one-nic.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 26843545600, - "bus": "nvme" - }, - { - "key": 2000, - "file": "[Mako13-NVMe1] bun-nvme-sata-scisi-sec-boot-one-nic/bun-nvme-sata-scisi-sec-boot-one-nic_1.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 2147483648, - "bus": "scsi" - }, - { - "key": 16030, - "file": "[Mako13-NVMe1] bun-nvme-sata-scisi-sec-boot-one-nic/bun-nvme-sata-scisi-sec-boot-one-nic_2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2034", - "name": "Mako13-NVMe1", - "type": "VMFS", - "capacity": 1600143753216, - "free": 350873452544 - }, - "capacity": 3221225472, - "bus": "sata" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - nvme0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - sata%!d(float64=8.881784197001252e-16):0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.disk.nvme.detected", - "label": "Disk NVMe was detcted", - "category": "Critical", - "assessment": "NVMe disks are not currently supported by MTV. The VM cannot be migrated" - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:17:44", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "bun-nvme-sata-scsi-sec-boot-one-nic", - "storageUsed": 32212529707 - }, - { - "id": "vm-24593", - "name": "lrosa-3-pool1-4gmzx-n65t6", - "path": "/PG Devlab/vm/jkeslar/luizrosa/lrosa-3-pool1-4gmzx-n65t6", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24593", - "revision": 1495, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 16000, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] lrosa-3-pool1-4gmzx-n65t6/lrosa-3-pool1-4gmzx-n65t6.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:e1:7e", - "order": 0 - } - ], - "ipAddress": "10.124.139.37", - "hostName": "lrosa-3-pool1-4gmzx-n65t6", - "storageUsed": 32694523199 - }, - { - "id": "vm-24582", - "name": "lrosa-2-pool1-dcfsd-m7lhz", - "path": "/PG Devlab/vm/jkeslar/luizrosa/lrosa-2-pool1-dcfsd-m7lhz", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24582", - "revision": 1347, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 16000, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe2] lrosa-2-pool1-dcfsd-m7lhz/lrosa-2-pool1-dcfsd-m7lhz.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:21:5a", - "order": 0 - } - ], - "ipAddress": "10.124.139.167", - "hostName": "lrosa-2-pool1-dcfsd-m7lhz", - "storageUsed": 32475377455 - }, - { - "id": "vm-24060", - "name": "New Virtual Machine", - "path": "/PG Devlab/vm/jkeslar/luizrosa/New Virtual Machine", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24060", - "revision": 221, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 8, - "memoryMB": 16384, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "network-12022", - "name": "vCenter-HA-Management", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-NVMe2] New Virtual Machine/New Virtual Machine.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2035", - "name": "Mako13-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 443096760320 - }, - "capacity": 85899345920, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - }, - { - "id": "vmware.vm.name.invalid", - "label": "Invalid VM Name", - "category": "Warning", - "assessment": "The VM name does not comply with the DNS subdomain name format. Edit the name or it will be renamed automatically during the migration to meet RFC 1123. The VM name must be a maximum of 63 characters containing lowercase letters (a-z), numbers (0-9), periods (.), and hyphens (-). The first and last character must be a letter or number. The name cannot contain uppercase letters, spaces or special characters." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-12022" - }, - "mac": "00:50:56:93:2c:7e", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "", - "storageUsed": 103178262135 - }, - { - "id": "vm-24061", - "name": "rancher1", - "path": "/PG Devlab/vm/jkeslar/luizrosa/rancher1", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24061", - "revision": 74, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 16384, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe2] rancher1/rancher1.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 107374182400, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:70:c1", - "order": 0 - } - ], - "ipAddress": "10.124.139.150", - "hostName": "ubuntu", - "storageUsed": 124653023376 - }, - { - "id": "vm-24599", - "name": "lrosa-3-pool2-qsp6z-pjpll", - "path": "/PG Devlab/vm/jkeslar/luizrosa/lrosa-3-pool2-qsp6z-pjpll", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24599", - "revision": 196, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 16000, - "guestName": "Microsoft Windows Server 2022 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] lrosa-3-pool2-qsp6z-pjpll_1/lrosa-3-pool2-qsp6z-pjpll.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 52428800000, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:55:be", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "lrosa-3-pool2-qsp6z-pjpll", - "storageUsed": 14391151778 - }, - { - "id": "vm-24600", - "name": "only-linux2-pool1-w2ztc-dwmt9", - "path": "/PG Devlab/vm/jkeslar/luizrosa/only-linux2-pool1-w2ztc-dwmt9", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24600", - "revision": 1343, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 16000, - "guestName": "Other 2.6.x Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe2] only-linux2-pool1-w2ztc-dwmt9/only-linux2-pool1-w2ztc-dwmt9.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:ec:d1", - "order": 0 - } - ], - "ipAddress": "10.124.138.216", - "hostName": "only-linux2-pool1-w2ztc-dwmt9", - "storageUsed": 29720475901 - }, - { - "id": "vm-24589", - "name": "only-linux2-pool1-w2ztc-db2m5", - "path": "/PG Devlab/vm/jkeslar/luizrosa/only-linux2-pool1-w2ztc-db2m5", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24589", - "revision": 1341, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 16000, - "guestName": "Other 2.6.x Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe2] only-linux2-pool1-w2ztc-db2m5/only-linux2-pool1-w2ztc-db2m5.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 53687091200, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:b5:b7", - "order": 0 - } - ], - "ipAddress": "10.124.138.255", - "hostName": "only-linux2-pool1-w2ztc-db2m5", - "storageUsed": 31835457701 - }, - { - "id": "vm-24597", - "name": "lrosa-2-pool2-ffvgk-vs5dj", - "path": "/PG Devlab/vm/jkeslar/luizrosa/lrosa-2-pool2-ffvgk-vs5dj", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-24597", - "revision": 4, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 16000, - "guestName": "Microsoft Windows Server 2022 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako15-NVMe2] lrosa-2-pool2-ffvgk-vs5dj_1/lrosa-2-pool2-ffvgk-vs5dj.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2041", - "name": "Mako15-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 383375114240 - }, - "capacity": 52428800000, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:30:ce", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "lrosa-2-pool2-ffvgk-vs5dj", - "storageUsed": 14394297387 - }, - { - "id": "vm-60551", - "name": "forklift-vm-small", - "path": "/PG Devlab/vm/forklift-vm-small", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60551", - "revision": 217, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 4, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako13-Local] forklift-vm-small/forklift-vm-small.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2043", - "name": "Mako13-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7444761673728 - }, - "capacity": 21474836480, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:7d:68", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "", - "storageUsed": 4225773553 - }, - { - "id": "vm-60615", - "name": "ibs-slem61-s1", - "path": "/PG Devlab/vm/ibs-slem61-s1", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60615", - "revision": 1083, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 4, - "coresPerSocket": 4, - "memoryMB": 8192, - "guestName": "SUSE Linux Enterprise 16 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3000, - "file": "[Content Library Datastore] ibs-slem61-s1/ibs-slem61-s1.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-16879", - "name": "Content Library Datastore", - "type": "NFS41", - "capacity": 65542688866304, - "free": 65166035648512 - }, - "capacity": 53687091200, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:f8:dc", - "order": 0 - } - ], - "ipAddress": "10.124.138.239", - "hostName": "dyn-2-239.devlab.pgu1.suse.com", - "storageUsed": 1733431144 - }, - { - "id": "vm-60662", - "name": "vardhaman-rke2-ubuntu-linux-pool-0-replica-1", - "path": "/PG Devlab/vm/vardhaman/vardhaman-rke2-ubuntu-linux-pool-0-replica-1", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60662", - "revision": 710, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] vardhaman-rke2-ubuntu-linux-pool-0-replica-1/vardhaman-rke2-ubuntu-linux-pool-0-replica-1.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:a8:14", - "order": 0 - } - ], - "ipAddress": "10.124.139.134", - "hostName": "ubuntu", - "storageUsed": 11586778234 - }, - { - "id": "vm-60663", - "name": "vardhaman-rke2-ubuntu-linux-pool-0-replica-0", - "path": "/PG Devlab/vm/vardhaman/vardhaman-rke2-ubuntu-linux-pool-0-replica-0", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60663", - "revision": 712, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 8, - "coresPerSocket": 1, - "memoryMB": 8192, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "bios", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] vardhaman-rke2-ubuntu-linux-pool-0-replica-0/vardhaman-rke2-ubuntu-linux-pool-0-replica-0.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 42949672960, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:0e:ea", - "order": 0 - } - ], - "ipAddress": "10.124.138.182", - "hostName": "ubuntu", - "storageUsed": 11584681082 - }, - { - "id": "vm-60733", - "name": "sallen-ubuntu-test", - "path": "/PG Devlab/vm/sallen-ubuntu-test", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60733", - "revision": 39, - "isTemplate": false, - "powerState": "poweredOff", - "cpuCount": 2, - "coresPerSocket": 1, - "memoryMB": 2048, - "guestName": "Ubuntu Linux (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "network-12022", - "name": "vCenter-HA-Management", - "variant": "Standard", - "vlanId": "" - } - ], - "disks": [ - { - "key": 2000, - "file": "[Mako14-NVMe2] sallen-ubuntu-test/sallen-ubuntu-test.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2038", - "name": "Mako14-NVMe2", - "type": "VMFS", - "capacity": 1600143753216, - "free": 685895581696 - }, - "capacity": 26843545600, - "bus": "scsi" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - scsi0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - }, - { - "id": "vmware.vm_powered_off.detected", - "label": "VM is powered off - Static IP preservation requires the VM to be powered on", - "category": "Warning", - "assessment": "Static IP preservation requires the VM to be powered on." - }, - { - "id": "vmware.hostname.empty", - "label": "Empty Host Name", - "category": "Warning", - "assessment": "The 'hostname' field is missing or empty. The hostname might be renamed during migration." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "network-12022" - }, - "mac": "00:50:56:93:37:53", - "order": 0 - } - ], - "ipAddress": "", - "hostName": "", - "storageUsed": 26843548315 - }, - { - "id": "vm-60734", - "name": "ag-slemicr62-1-tar", - "path": "/PG Devlab/vm/aganesh/ag-slemicr62-1-tar", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60734", - "revision": 129, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 10, - "coresPerSocket": 10, - "memoryMB": 20480, - "guestName": "SUSE Linux Enterprise 16 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3000, - "file": "[Mako13-Local] ag-slemicr62-1/ag-slemicr62-1.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2043", - "name": "Mako13-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7444761673728 - }, - "capacity": 25769803776, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:e4:51", - "order": 0 - } - ], - "ipAddress": "10.124.138.225", - "hostName": "dyn-2-225.devlab.pgu1.suse.com", - "storageUsed": 47347675202 - }, - { - "id": "vm-60735", - "name": "ag-slemicro62-2-tar", - "path": "/PG Devlab/vm/aganesh/ag-slemicro62-2-tar", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60735", - "revision": 114, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 10, - "coresPerSocket": 10, - "memoryMB": 20480, - "guestName": "SUSE Linux Enterprise 16 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3000, - "file": "[Mako13-Local] ag-slemicro62-2/ag-slemicro62-2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2043", - "name": "Mako13-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7444761673728 - }, - "capacity": 25769803776, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:db:e1", - "order": 0 - } - ], - "ipAddress": "10.124.138.186", - "hostName": "dyn-2-186.devlab.pgu1.suse.com", - "storageUsed": 47347675207 - }, - { - "id": "vm-60736", - "name": "ag-slemicro62-3-tar", - "path": "/PG Devlab/vm/aganesh/ag-slemicro62-3-tar", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60736", - "revision": 79, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 10, - "coresPerSocket": 10, - "memoryMB": 20480, - "guestName": "SUSE Linux Enterprise 16 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3000, - "file": "[Mako13-Local] ag-slemicro62-3/ag-slemicro62-3.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2043", - "name": "Mako13-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7444761673728 - }, - "capacity": 25769803776, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:c8:fb", - "order": 0 - } - ], - "ipAddress": "10.124.139.26", - "hostName": "dyn-3-026.devlab.pgu1.suse.com", - "storageUsed": 47347675207 - }, - { - "id": "vm-60737", - "name": "ag-slemicro62-4-tar", - "path": "/PG Devlab/vm/aganesh/ag-slemicro62-4-tar", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60737", - "revision": 89, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 10, - "coresPerSocket": 10, - "memoryMB": 20480, - "guestName": "SUSE Linux Enterprise 16 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3000, - "file": "[Mako13-Local] ag-slemicro62-4/ag-slemicro62-4.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2043", - "name": "Mako13-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7444761673728 - }, - "capacity": 25769803776, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:e1:de", - "order": 0 - } - ], - "ipAddress": "10.124.138.189", - "hostName": "dyn-2-189.devlab.pgu1.suse.com", - "storageUsed": 47347675207 - }, - { - "id": "vm-60752", - "name": "rke2-rpm-slemicro62-1", - "path": "/PG Devlab/vm/aganesh/rke2-rpm-slemicro62-1", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60752", - "revision": 52, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 10, - "coresPerSocket": 10, - "memoryMB": 20480, - "guestName": "SUSE Linux Enterprise 16 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3000, - "file": "[Mako13-Local] rke2-rpm-slemicro62-1/rke2-rpm-slemicro62-1.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2043", - "name": "Mako13-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7444761673728 - }, - "capacity": 25769803776, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:b1:b4", - "order": 0 - } - ], - "ipAddress": "10.124.138.219", - "hostName": "dyn-2-219.devlab.pgu1.suse.com", - "storageUsed": 47347675237 - }, - { - "id": "vm-60753", - "name": "rke2-rpm-slemicro62-2", - "path": "/PG Devlab/vm/aganesh/rke2-rpm-slemicro62-2", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60753", - "revision": 44, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 10, - "coresPerSocket": 10, - "memoryMB": 20480, - "guestName": "SUSE Linux Enterprise 16 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3000, - "file": "[Mako13-Local] rke2-rpm-slimicro62-2/rke2-rpm-slimicro62-2.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2043", - "name": "Mako13-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7444761673728 - }, - "capacity": 25769803776, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:3f:02", - "order": 0 - } - ], - "ipAddress": "10.124.139.226", - "hostName": "dyn-3-226.devlab.pgu1.suse.com", - "storageUsed": 47347675237 - }, - { - "id": "vm-60754", - "name": "rke2-rpm-slemicro62-3", - "path": "/PG Devlab/vm/aganesh/rke2-rpm-slemicro62-3", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60754", - "revision": 38, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 10, - "coresPerSocket": 10, - "memoryMB": 20480, - "guestName": "SUSE Linux Enterprise 16 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3000, - "file": "[Mako13-Local] rke2-rpm-slemicro62-3/rke2-rpm-slemicro62-3.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2043", - "name": "Mako13-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7444761673728 - }, - "capacity": 25769803776, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:d9:c4", - "order": 0 - } - ], - "ipAddress": "10.124.139.59", - "hostName": "dyn-3-059.devlab.pgu1.suse.com", - "storageUsed": 47347675237 - }, - { - "id": "vm-60755", - "name": "rke2-rpm-slemicro62-4", - "path": "/PG Devlab/vm/aganesh/rke2-rpm-slemicro62-4", - "selfLink": "providers/vsphere/eaac340a-8953-479d-9463-85a1a100ab9d/vms/vm-60755", - "revision": 35, - "isTemplate": false, - "powerState": "poweredOn", - "cpuCount": 10, - "coresPerSocket": 10, - "memoryMB": 20480, - "guestName": "SUSE Linux Enterprise 16 (64-bit)", - "firmware": "efi", - "networks": [ - { - "kind": "Network", - "id": "dvportgroup-5003", - "name": "VM-Network", - "variant": "DvPortGroup", - "vlanId": "" - } - ], - "disks": [ - { - "key": 3000, - "file": "[Mako13-Local] rke2-rpm-slemicro62-4/rke2-rpm-slemicro62-4.vmdk", - "datastore": { - "kind": "Datastore", - "id": "datastore-2043", - "name": "Mako13-Local", - "type": "VMFS", - "capacity": 8001524072448, - "free": 7444761673728 - }, - "capacity": 25769803776, - "bus": "ide" - } - ], - "concerns": [ - { - "id": "vmware.changed_block_tracking.disk.disabled", - "label": "Disk - ide0:0 does not have CBT enabled", - "category": "Warning", - "assessment": "Changed Block Tracking (CBT) has not been enabled for this device. This feature is a prerequisite for VM warm migration." - }, - { - "id": "vmware.drs.enabled", - "label": "VM running in a DRS-enabled cluster", - "category": "Information", - "assessment": "Distributed resource scheduling is not currently supported by Migration Toolkit for Virtualization. The VM can be migrated but it will not have this feature in the target environment." - }, - { - "id": "vmware.changed_block_tracking.disabled", - "label": "Changed Block Tracking (CBT) not enabled", - "category": "Warning", - "assessment": "For VM warm migration, Changed Block Tracking (CBT) must be enabled in VMware." - } - ], - "nics": [ - { - "network": { - "kind": "Network", - "id": "dvportgroup-5003" - }, - "mac": "00:50:56:93:f2:33", - "order": 0 - } - ], - "ipAddress": "10.124.139.72", - "hostName": "dyn-3-072.devlab.pgu1.suse.com", - "storageUsed": 47347675237 - } -] \ No newline at end of file diff --git a/pkg/harvester/vue.config.js b/pkg/harvester/vue.config.js index 1a054406..e3f9b49d 100644 --- a/pkg/harvester/vue.config.js +++ b/pkg/harvester/vue.config.js @@ -1,18 +1 @@ -const path = require('path'); - -const config = require('@rancher/shell/pkg/vue.config')(__dirname); -const originalConfigureWebpack = config.configureWebpack; - -config.configureWebpack = function(cfg) { - if (originalConfigureWebpack) { - originalConfigureWebpack(cfg); - } - - // Force @rancher/icons to resolve to the top-level 2.0.60 version - // so new icons (datastore, disk, network, etc.) are available in extension mode. - const maindir = path.resolve(__dirname, '..', '..'); - - cfg.resolve.alias['@rancher/icons'] = path.resolve(maindir, 'node_modules', '@rancher/icons'); -}; - -module.exports = config; +module.exports = require('@rancher/shell/pkg/vue.config')(__dirname); diff --git a/vue.config.js b/vue.config.js index e1774fe3..83208dbd 100644 --- a/vue.config.js +++ b/vue.config.js @@ -1,21 +1,6 @@ -const path = require('path'); -const baseConfig = require('@rancher/shell/vue.config'); +const config = require('@rancher/shell/vue.config'); -const shellConfig = baseConfig(__dirname, { +module.exports = config(__dirname, { excludes: [], // excludes: ['harvester'] }); - -const originalConfigureWebpack = shellConfig.configureWebpack; - -shellConfig.configureWebpack = function(config) { - if (originalConfigureWebpack) { - originalConfigureWebpack(config); - } - - // Force all @rancher/icons imports (including from @rancher/shell) to use - // the top-level 2.0.60 version so new icons are available everywhere. - config.resolve.alias['@rancher/icons'] = path.resolve(__dirname, 'node_modules', '@rancher/icons'); -}; - -module.exports = shellConfig;