When importing VMware Aria Automation version 8.18.x from Aria Suite Life Cycle Manager into Fleet Management as part of a VCF Automation 9.0 upgrade (VCFA Import), the network properties for some Aria automation nodes may not populate correctly.
Specifically, the network information is missing for the primary and tertiary Aria Automation nodes in the Fleet Manager UI, while the secondary node network information is present.
VCF Automation 9.0.x
The network information fails to populate for two of the AA nodes (primary) during the import process due to an issue where the node types were not correctly identified or synchronized in the VCF Ops Fleet Manager database.
Resolution: Broadcom Engineering team is aware of the issue and this will be fixed in future versions.
Workaround:
The workaround involves swapping the node types of the affected primary and a working secondary node within the VCF Fleet manager database to enable the upgrade to proceed.
The resolution requires a direct database modification on the VCF Fleet manager appliance and should be performed with caution. Before proceeding, it is critical to take a snapshot of the VCF Fleet Manager appliance.
cd /opt/vmware/vpostgres/current/bin
su postgres
./psql -d vrlcm
select * from vm_lcops_product where id='vra';
product_vmid obtained in the previous step. Replace <VMID-of-AA (Aria Automation)-product> with the actual ID:
select * from vm_lcops_product_nodes where product_vmid='<VMID-of-AA-product>';
update vm_lcops_product_nodes set type='vrava-secondary' where vmid='[vmid of current primary node]';
update vm_lcops_product_nodes set type='vrava-primary' where vmid='[vmid of current secondary node with network info]';
Verify the swap: Check the UI and components page. The node that was designated as the secondary should now show the network information as the new primary node.