fix: handle missing Proxmox VM config during cleanup
Deploy Cluster / Terraform (push) Successful in 1m41s
Deploy Cluster / Ansible (push) Failing after 44m51s

This commit is contained in:
2026-04-25 17:40:51 +00:00
parent 383ef9e9ac
commit 43df412243
+2
View File
@@ -130,6 +130,8 @@ jobs:
except urllib.error.HTTPError as err:
if err.code == 404:
return False
if err.code == 500 and "conf' does not exist" in err.reason:
return False
raise
for vmid in vm_ids: