davidjumani opened a new pull request #6139: URL: https://github.com/apache/cloudstack/pull/6139
### Description Fixes https://github.com/apache/cloudstack/issues/6087 Adds support to detect existing hosts with UEFI capability ### Types of changes - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [ ] New feature (non-breaking change which adds functionality) - [ ] Bug fix (non-breaking change which fixes an issue) - [x] Enhancement (improves an existing feature and functionality) - [ ] Cleanup (Code refactoring and cleanup, that may add test cases) #### Feature/Enhancement Scale - [ ] Major - [x] Minor ### How Has This Been Tested? - Bring up a 4.13 env with VMware 6.5 (anything that supports UEFI) - Upgrade to latest main - Try to deploy a VM with UEFI - Deployment now passes Previously failed to find a suitable host as none were UEFI compatible #### Before : ``` MariaDB [cloud]> select * from host_details where name = 'host.uefi.enable' \G Empty set (0.00 sec) ``` #### After : ``` MariaDB [cloud]> select * from host_details where name = 'host.uefi.enable' \G *************************** 1. row *************************** id: 34 host_id: 1 name: host.uefi.enable value: true *************************** 2. row *************************** id: 40 host_id: 2 name: host.uefi.enable value: true 2 rows in set (0.00 sec) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
