python-ironicclient/releasenotes/notes/add-deploy-steps-arg-0b127e29c8cf976d.yaml
Aija Jauntēva 8df29e00a2 Add 'deploy steps' for provisioning API
Story: 2008043
Task: 41409
Depends-On: https://review.opendev.org/c/openstack/ironic/+/768353
Change-Id: I6adffcf304ca090ff551280f3ec4c9d09a5537d8
2021-01-13 08:27:20 -05:00

16 lines
888 B
YAML

---
features:
- |
Adds support for providing optional deploy steps when deploying or
rebuilding; available with ironic-api-version 1.69 or higher. Baremetal CLI
is ``baremetal node <provision-state> <node> --deploy-steps
<deploy-steps>`` where ``<provision-state>`` is 'deploy' or 'rebuild' and
``<deploy-steps>`` are deploy steps in JSON format. May be path to a file
containing deploy steps; OR '-', with the deploy steps being read from
standard input; OR a string. The value should be a list of deploy-step
dictionaries; each dictionary should have keys 'interface', 'step' and
'priority', and optional key 'args'. When overlapping, these steps override
deploy template and driver steps. For more information see
`Deploy Steps in Node Deployment documentation <https://docs.openstack.org/ironic/latest/admin/node-deployment.html#id3>`_.