Hello @olivierlambert ,
I saw the problem was due to my yum update on my xcp-ng 8.2 cluster has changed the subversion of xcp-ng
It changed from 8.2.0 to 8.2.1
So the Cloudstack management server is updating his entries for my hosts saying it is version 8.2.1
The hypervisor capabilities in Cloudstack 4.16 says only xenserver 8.2.0 is recognized
I added hypervisor capabilities in Cloudstack like this :
#add hypervsisor xcp 8.2.1 to acs 4.16
INSERT IGNORE INTO cloud
.hypervisor_capabilities
(uuid, hypervisor_type,
hypervisor_version, max_guests_limit, max_data_volumes_limit,
max_hosts_per_cluster, storage_motion_supported) values (UUID(), 'XenServer',
'8.2.1', 1000, 253, 64, 1);
+-- Copy XenServer 8.2.0 hypervisor guest OS mappings to XenServer 8.2.1
+INSERT IGNORE INTO cloud
.guest_os_hypervisor
(uuid,hypervisor_type,
hypervisor_version, guest_os_name, guest_os_id, created, is_user_defined)
SELECT UUID(),'Xenserver', '8.2.1', guest_os_name, guest_os_id,
utc_timestamp(), 0 FROM cloud
.guest_os_hypervisor
WHERE
hypervisor_type='Xenserver' AND hypervisor_version='8.2.0';
This is now working for me
Could you confirm me from your side that between xcp-ng 8.2.0 and xcp-ng 8.2.1 there is no changes with :
- Xapi
- Live storage migration stuff
- Live migration (just instance no storage moving
- Snapshots
Thanks a lot for your help @olivierlambert
Best Regards