Skip to content

v0.15.2

Choose a tag to compare

@github-actions github-actions released this 22 Apr 22:15
v0.15.2
ada88ed

Fixes

  • Remove invalid force_after_timeout: true from DeleteVM options — v0.15.1 passed {force: true, force_after_timeout: true} to vm.delete, but TrueNAS 25.10 rejects the second option: truenas api error (code 11): [EINVAL] options.force_after_timeout: Extra inputs are not permitted. That option exists on vm.stop, not vm.delete. Live impact: on every Deprovision retry the provider first StopVM'd the target (graceful ACPI, succeeded), then DeleteVM failed at the schema check. VMs ended up stopped but not deleted, the SDK held the finalizer, and the loop replayed every 15s — causing truenas_shutdown_graceful_total to climb 195× in 3h and leaving previously-running cluster members powered off. DeleteVM now passes only {force: true}. TestDeleteVM_Success pins the exact param shape to block this regression returning.

Full Changelog: v0.15.1...v0.15.2