Files
skystack/examples/sample-vm-config.json

41 lines
704 B
JSON

{
"name": "ubuntu-desktop",
"description": "Ubuntu Desktop VM for development",
"cpu": {
"cores": 4,
"model": "host",
"sockets": 1
},
"memory": {
"sizeGB": 8
},
"storage": {
"disks": [
{
"path": "ubuntu-desktop.qcow2",
"format": "qcow2",
"sizeGB": 50,
"isBoot": true
},
{
"path": "ubuntu-data.qcow2",
"format": "qcow2",
"sizeGB": 100,
"isBoot": false
}
],
"cdrom": {
"path": "ubuntu-24.04.3-desktop-amd64.iso",
"isBoot": true
}
},
"network": {
"backend": "user",
"device": "e1000"
},
"display": {
"type": "gtk",
"vga": "virtio"
}
}