This is an automated email from the ASF dual-hosted git repository.
harikrishna pushed a commit to branch 4.22
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.22 by this push:
new 4761935145e server: add options for kvm.guest.os.machine.type (#12414)
4761935145e is described below
commit 4761935145e100622df083dedffec612482b16d2
Author: Wei Zhou <[email protected]>
AuthorDate: Wed Jan 28 06:59:31 2026 +0100
server: add options for kvm.guest.os.machine.type (#12414)
---
server/src/main/java/com/cloud/api/query/QueryManagerImpl.java | 1 +
1 file changed, 1 insertion(+)
diff --git a/server/src/main/java/com/cloud/api/query/QueryManagerImpl.java
b/server/src/main/java/com/cloud/api/query/QueryManagerImpl.java
index 3b232948395..d42dbaec6de 100644
--- a/server/src/main/java/com/cloud/api/query/QueryManagerImpl.java
+++ b/server/src/main/java/com/cloud/api/query/QueryManagerImpl.java
@@ -5398,6 +5398,7 @@ public class QueryManagerImpl extends
MutualExclusiveIdsManagerBase implements Q
options.put(VmDetailConstants.VIRTUAL_TPM_VERSION,
Arrays.asList("1.2", "2.0"));
options.put(VmDetailConstants.GUEST_CPU_MODE,
Arrays.asList("custom", "host-model", "host-passthrough"));
options.put(VmDetailConstants.GUEST_CPU_MODEL,
Collections.emptyList());
+ options.put(VmDetailConstants.KVM_GUEST_OS_MACHINE_TYPE,
Collections.emptyList());
options.put(VmDetailConstants.KVM_SKIP_FORCE_DISK_CONTROLLER,
Arrays.asList("true", "false"));
}