Merge "Release notes cleanup for Pike release"

This commit is contained in:
Jenkins 2017-08-14 21:09:13 +00:00 committed by Gerrit Code Review
commit 81d366dca6
5 changed files with 19 additions and 16 deletions

View File

@ -1,11 +1,14 @@
--- ---
features: features:
- Adds an extra field ``biosdevname`` (BIOS given NICs name) to network - |
interface inventory collected by ``default`` collector of Collects the BIOS-given NIC's name and adds ``biosdevname`` field to the
ironic-python-agent. Biosdevname utility is used for collecting bios given network interface inventory collected by the ``default`` collector of IPA.
NICs name. The utility ``biosdevname`` is used for this purpose.
This feature is not available for Debian-based and CoreOS images as
``biosdevname`` is not packaged for Debian-based distributions.
issues: issues:
- Collecting the 'biosdevname' field on network interfaces is impossible on any - Collection of the BIOS-given names of network interfaces is not possible on
Debian-based images due to the missing 'biosdevname' utility. This includes Debian-based images as the utility ``biosdevname`` is not available on
the CoreOS image, as the CoreOS image utilizes a Debian-based chroot. them. This applies to any CoreOS images as well, as they utilize a
Debian-based chroot.

View File

@ -1,4 +1,4 @@
--- ---
features: features:
- Adds new optional NUMA topology collector named ``numa_topology``. - Adds a new optional NUMA topology collector named ``numa_topology``.
It collects NUMA specific RAM, CPU and NIC information. It collects NUMA specific RAM, CPU and NIC information.

View File

@ -1,3 +1,3 @@
--- ---
fixes: fixes:
- Correct message output when failed to download image. - Shows correct output message when IPA fails to download image.

View File

@ -1,6 +1,5 @@
--- ---
fixes: fixes:
- JSON serialization of logs collected for ironic-python-agent. - Fixes JSON serialization of logs by encoding them as text instead of byte
In python3 logs were encoded as byte strings, which can't be serialized. strings in IPA. This works for py2.7 as well as py3. See
Make sure that logs are encoded as text for both py2.7 and py3. See
https://bugs.launchpad.net/ironic-python-agent/+bug/1668533 for details. https://bugs.launchpad.net/ironic-python-agent/+bug/1668533 for details.

View File

@ -1,7 +1,8 @@
--- ---
fixes: fixes:
- | - |
IPMI interface can be configured to use lan channel different than Fixes bug where it was assumed that all BMCs operated on the default LAN
a default one. In that case querying it will return 0.0.0.0 as an IP channel. IPA now iterates through all the possible LAN channels for the
address representing an interface lacking configuration. In order to get IP address and returns 0.0.0.0 if the IPMI interface is not configured. See
the real IP address, we need to iterate through all the possible channels. https://bugs.launchpad.net/ironic-python-agent/+bug/1702514
for more details.