Search results

  1. C

    Configure scsi by Proxmox API

    I was able to solve the issue: payload = { "vmid": 604, "sockets":1, "cores":2, "memory":4096, "ostype":"l26", "cdrom":"local:iso/ubuntu-20.04.2-live-server-amd64.iso,media=cdrom", "scsi0":"local-lvm:32"...
  2. C

    Configure scsi by Proxmox API

    complete request(im using the requests library in python) : payload = { "tags": nodename, "vmid": 604, "sockets":1, "cores":2, "memory":4096, "ostype":"l26"...
  3. C

    Configure scsi by Proxmox API

    Hello! I have an installed Proxmox server which is functional through GUI and CLI. I want to launch a VM through the proxmox API, and i am trying to do so by sending a POST request to /nodes/{node}/qemu. I am able to get the VM instantiated, but it wont run. I think the problem is due to the...