
Proxmox VE Update
CertifiedUpdate configuration of a QEMU virtual machine on Proxmox VE
Proxmox VE Update
Update configuration of a QEMU virtual machine on Proxmox VE
Sends a PUT to /nodes/{node}/qemu/{vmid}/config to update VM configuration parameters such as cores or memory. Additional raw config key/value pairs can be supplied via the config map.
type: io.kestra.plugin.proxmox.vm.UpdateExamples
Update VM cores and memory
id: update_vm
namespace: company.team
tasks:
- id: update
type: io.kestra.plugin.proxmox.vm.Update
host: "{{ secret('PROXMOX_HOST') }}"
username: "{{ secret('PROXMOX_USERNAME') }}"
password: "{{ secret('PROXMOX_PASSWORD') }}"
node: pve
vmName: my-vm
cores: 4
memory: 8192
Properties
host *Requiredstring
Proxmox host
Hostname or IP address of the Proxmox VE node (no scheme, no port).
node *Requiredstring
Proxmox node name
Name of the cluster node that scopes all API calls (e.g. pve, node1).
vmName *Requiredstring
VM name or ID
Either a VM name (resolved at runtime) or an integer VMID.
config object
Additional config parameters
Raw Proxmox config key/value pairs to pass directly to the API (e.g. description, balloon, etc.).
cores integerstring
Number of CPU cores
memory integerstring
Memory in MiB
password string
Password
Password for ticket-based authentication.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
port integerstring
8006API port
Defaults to 8006.
tokenId string
API token ID
Full token identifier in the form user@realm!tokenname (e.g. root@pam!mytoken). Use together with tokenSecret.
tokenSecret string
API token secret
The UUID secret associated with the token ID.
username string
Username
PAM or PVE user in the form user@realm (e.g. root@pam). Required when using ticket-based auth.
verifySsl booleanstring
trueVerify SSL
Validate the server TLS certificate. Defaults to true; set to false only for trusted networks with self-signed Proxmox certificates.