While attempting to build a Windows VM with Vagrant + my home ESXi 6.7 server I encountered the following error.
Opening VMX source: /Users/royce/.vagrant.d/boxes/StefanScherer-VAGRANTSLASH-windows_2019/2021.05.15/vmware_desktop/ZZZZ_WEB01.vmx
Opening VI target: vi://root@192.168.112.155:443/
Error:
- Invalid VM configuration. Reason: 'Invalid configuration for device '2'.' for property 'VirtualVideoCard.videoRamSizeInKB'
Completed with errors
There was an OVF Tool error.
The suggestion is to set the following inside the OVF
svga.vramSize = "134217728"
Can you add an option in vmware_esxi to set this? Similar to esxi.guest_memsize but something like esxi.guest_vramsize then I could specify this value in my Vagrantfile
While attempting to build a Windows VM with Vagrant + my home ESXi 6.7 server I encountered the following error.
A little bit of Googling yields this page which states a suggested workaround https://kb.vmware.com/s/article/65205
The suggestion is to set the following inside the OVF
svga.vramSize = "134217728"
Can you add an option in vmware_esxi to set this? Similar to
esxi.guest_memsize
but something likeesxi.guest_vramsize
then I could specify this value in my VagrantfileWould be much appreciated!