summaryrefslogtreecommitdiff
path: root/releasenotes
diff options
context:
space:
mode:
authorJacob Anders <janders@redhat.com>2022-06-21 13:18:12 +1000
committerJacob Anders <janders@redhat.com>2022-07-05 22:27:43 +1000
commit1dda97c783653aef638113cb1faa250836ed99e1 (patch)
treed3df7098d2eb1a5d4e5711701bcb2dccda9774d5 /releasenotes
parent39a7f58002eac8ad10720c7347f001c8afd24a6f (diff)
downloadironic-1dda97c783653aef638113cb1faa250836ed99e1.tar.gz
Prevent clear_job_queue and reset_idrac failures on older iDRACs
Currently, clear_job_queue and reset_idrac steps are only supported on idrac-redfish driver on iDRAC9 hardware. However, Ironic still attempts to run these steps on iDRAC8 BMCs configured with idrac-redfish driver which results in verification failures. This change attempts to resolve it by catching the related exception, logging a warning and continuing verification. In case of cleaning, it still fails. Story: 2010091 Task: 45630 Change-Id: Icd8c5378469887962ff32eea2f38697c539f7e95
Diffstat (limited to 'releasenotes')
-rw-r--r--releasenotes/notes/skip-clear-job-queue-idrac-reset-if-attr-missing-b2a2b609c906c6c4.yaml8
1 files changed, 8 insertions, 0 deletions
diff --git a/releasenotes/notes/skip-clear-job-queue-idrac-reset-if-attr-missing-b2a2b609c906c6c4.yaml b/releasenotes/notes/skip-clear-job-queue-idrac-reset-if-attr-missing-b2a2b609c906c6c4.yaml
new file mode 100644
index 000000000..df9bef955
--- /dev/null
+++ b/releasenotes/notes/skip-clear-job-queue-idrac-reset-if-attr-missing-b2a2b609c906c6c4.yaml
@@ -0,0 +1,8 @@
+---
+fixes:
+ - |
+ Resolved clear_job_queue and reset_idrac verify step failures which occur
+ when the functionality is not supported by the iDRAC. When this condition
+ is detected, the code in the step handles the exception and logs a warning
+ and completes successfully in case of verification steps but fails in case
+ of cleaning steps.