![]() The tl;dr is that UEFI NVRAM is in encoded
in UTF-16, and when we run the efibootmgr command,
we can get unicode characters back.
Except we previously were forcing everything to be
treated as UTF-8 due to the way oslo.concurrency's
processutils module works.
This could be observed with UTF character 0x00FF
which raises up a nice exception when we try to
decode it.
Anyhow! while fixing handling of this, we discovered
we could get basically the cruft out of the NVRAM,
by getting what was most likey a truncated string
out of our own test VMs. As such, we need to also
permit decoding to be tollerant of failures.
This could be binary data or as simple as flipped
bits which get interpretted invalid characters.
As such, we have introduced such data into one of our
tests involving UEFI record de-duplication.
Closes-Bug: 2015602
Change-Id: I006535bf124379ed65443c7b283bc99ecc95568b
(cherry picked from commit
|
1 month ago | |
---|---|---|
doc | 5 months ago | |
examples | 2 years ago | |
imagebuild | 4 years ago | |
ironic_python_agent | 1 month ago | |
releasenotes | 1 month ago | |
tools | 4 years ago | |
zuul.d | 5 months ago | |
.gitignore | 4 years ago | |
.gitreview | 3 months ago | |
.stestr.conf | 6 years ago | |
CONTRIBUTING.rst | 5 years ago | |
LICENSE | 10 years ago | |
README.rst | 4 years ago | |
bindep.txt | 11 months ago | |
plugin-requirements.txt | 3 years ago | |
requirements.txt | 11 months ago | |
setup.cfg | 1 year ago | |
setup.py | 5 months ago | |
test-requirements.txt | 3 years ago | |
tox.ini | 3 months ago |
README.rst
Ironic Python Agent
Team and repository tags
Overview
An agent for controlling and deploying Ironic controlled baremetal nodes.
The ironic-python-agent works with the agent driver in Ironic to provision the node. Starting with ironic-python-agent running on a ramdisk on the unprovisioned node, Ironic makes API calls to ironic-python-agent to provision the machine. This allows for greater control and flexibility of the entire deployment process.
The ironic-python-agent may also be used with the original Ironic pxe drivers as of the Kilo OpenStack release.
Building the IPA deployment ramdisk
For more information see the Image Builder section of the Ironic Python Agent developer guide.
Using IPA with devstack
This is covered in the Deploying Ironic with DevStack section of the Ironic dev-quickstart guide.
Project Resources
Project status, features, and bugs are tracked on StoryBoard:
Developer documentation can be found here:
Release notes for the project are available at:
https://docs.openstack.org/releasenotes/ironic-python-agent/
Source code repository for the project is located at:
- IRC channel:
#openstack-ironic
To contribute, start here: Openstack: How to contribute.