Skip to content

Commit

Permalink
fix videoram can be any integer
Browse files Browse the repository at this point in the history
  • Loading branch information
leolleeooleo committed Sep 30, 2021
1 parent 89d26b8 commit 789d68e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -3880,7 +3880,7 @@ private void fillVMOrTemplateDetailOptions(final Map<String, List<String>> optio
if (HypervisorType.KVM.equals(hypervisorType)) {
options.put(VmDetailConstants.ROOT_DISK_CONTROLLER, Arrays.asList("osdefault", "ide", "scsi", "virtio"));
options.put(VmDetailConstants.VIDEO_HARDWARE, Arrays.asList("cirrus", "vga", "qxl", "virtio"));
options.put(VmDetailConstants.VIDEO_RAM, Arrays.asList("16384", "32768", "65536"));
options.put(VmDetailConstants.VIDEO_RAM, Collections.emptyList());
}

if (HypervisorType.VMware.equals(hypervisorType)) {
Expand Down

0 comments on commit 789d68e

Please sign in to comment.