
KVM / Libvirt DeleteVm
CertifiedDelete or undefine KVM domain
KVM / Libvirt DeleteVm
Delete or undefine KVM domain
Looks up a libvirt domain by name, stops it if running, and undefines it. Can also delete attached storage volumes parsed from the domain XML when deleteStorage is true (default false). Fails when the domain is missing unless failIfNotFound is set to false (default true).
type: io.kestra.plugin.kvm.DeleteVmExamples
id: kvm_lifecycle_ssh
namespace: kvmtest.ssh
tasks:
- id: delete_vm
type: io.kestra.plugin.kvm.DeleteVm
uri: "qemu+ssh://root@167.99.104.163/system"
name: "kestra-worker-nodes"
deleteStorage: true
failIfNotFound: true
Properties
name *Requiredstring
Domain name
Name of the libvirt domain to delete.
deleteStorage booleanstring
falseDelete storage volumes
If true, deletes volumes referenced in the domain XML by pool/name before undefine. Default false.
failIfNotFound booleanstring
trueFail if missing
If true, throws when the domain does not exist; if false, logs a warning and continues. Default true.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
uri string
Libvirt URI
Outputs
deletedVolumes array
Deleted volumes
Volume identifiers removed when deleteStorage is true.
success boolean
falseDelete succeeded
True when the domain was found and undefined; false when skipped.