3e51982252
Some drivers use a periodic task to poll for completion of a deploy or clean step. The iDRAC RAID driver is one example of this. In https://review.opendev.org/#/c/676152, the agent heartbeat handler was modified to resume deployment if not currently in the core deploy step. This makes sense for the ilo driver, which does not poll for completion of RAID configuration, but the iDRAC driver polls the lifecycle controller's job queue, and expects to be able to resume deployment once the job is complete. However, there is now a race between the agent heartbeat as the node boots up, and the job queue poller. This change adds new flags, cleaning_polling and deployment_polling, which can be used by a driver to signal that they are polling for completion of a deploy step, and that the agent heartbeat should not be used for this purpose. We also add here some more cleanup of the cleaning and deployment step metadata in driver_internal_info, since if these fields are left in place they may affect subsequent cleaning or deployment steps. Change-Id: I34591440ab993a80a0cc88be6e10e33f1ae4a660 Story: 2003817 Task: 36563
9 lines
384 B
YAML
9 lines
384 B
YAML
---
|
|
fixes:
|
|
- |
|
|
Fixes an issue with asynchronous deploy steps that poll for completion
|
|
where the step could fail to execute. The ``deployment_polling`` and
|
|
``cleaning_polling`` flags may be used by driver implementations to signal
|
|
that the driver is polling for completion. See `story 2003817
|
|
<https://storyboard.openstack.org/#!/story/2003817>`__ for details.
|