Ironic Python Agent (also often called IPA or just agent) is a Python-based agent which handles ironic bare metal nodes in a variety of actions such as inspect, configure, clean and deploy images. IPA is distributed over nodes and runs, inside of a ramdisk, the process of booting this ramdisk on the node.
For more information see the ironic-python-agent documentation.
Starting with the Kilo release all deploy interfaces (except for fake ones) are using IPA. There are two types of them:
Which one to choose depends on your environment. iSCSI deploy puts higher load on conductors, Direct deploy currently requires the whole image to fit in the node’s memory, except when using raw images. It also requires Configure the Image service for temporary URLs.
Using IPA requires it to be present and configured on the deploy ramdisk, see Building or downloading a deploy ramdisk image
When using the Direct deploy, IPA supports using proxies for downloading the user image. For example, this could be used to speed up download by using a caching proxy.
[glance]swift_temp_url_cache_enabled
in the ironic conductor config
file to True
. The conductor will reuse the cached swift temporary URLs
instead of generating new ones each time an image is requested, so that the
proxy server does not create new cache entries for the same image, based on
the query part of the URL (as it contains some query parameters that change
each time it is regenerated).[glance]swift_temp_url_expected_download_start_delay
option in the
ironic conductor config file to the value appropriate for your hardware.
This is the delay (in seconds) from the time of the deploy request (when
the swift temporary URL is generated) to when the URL is used for the image
download. You can think of it as roughly the time needed for IPA ramdisk to
startup and begin download. This value is used to check if the swift
temporary URL duration is large enough to let the image download begin. Also
if temporary URL caching is enabled, this will determine if a cached entry
will still be valid when the download starts. It is used only if
[glance]swift_temp_url_cache_enabled
is True
.[glance]swift_temp_url_duration
option in the ironic conductor
config file, as only non-expired links to images will be returned from the
swift temporary URLs cache. This means that if
swift_temp_url_duration=1200
then after 20 minutes a new image will be
cached by the proxy server as the query in its URL will change. The value of
this option must be greater than or equal to
[glance]swift_temp_url_expected_download_start_delay
.image_http_proxy
, image_https_proxy
,
image_no_proxy
to driver_info properties in each node that will use the
proxy.After deploying an image onto the node’s hard disk, Ironic will reboot
the machine into the new image. By default this power action happens
in-band
, meaning that the ironic-conductor will instruct the IPA
ramdisk to power itself off.
Some hardware may have a problem with the default approach and
would require Ironic to talk directly to the management controller
to switch the power off and on again. In order to tell Ironic to do
that, you have to update the node’s driver_info
field and set the
deploy_forces_oob_reboot
parameter with the value of True. For
example, the below command sets this configuration in a specific node:
openstack baremetal node set <UUID or name> --driver-info deploy_forces_oob_reboot=True
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.