e0fd53d183
This patch is adding code to ignore malformed MAC addresses which are called as part of the lookup() mechanism. Prior to this patch, if a MAC address wasn't in the expected format (six octets) the deployment of the node would fail because the ramdisk wouldn't be able to lookup which node it was in the Ironic database. One way to trigger this problem was to deploy a node with an Infiniband Card which the MAC address (or GID) contains 20 octets, that would result in a deployment failure even when that NIC wasn't used by Ironic at all (not enrolled as a port). The ListOfMacAdresses type was also deleted as part of this patch because it wasn't used anywhere else. Change-Id: I614fe63236985438d2f354d17a15d17649e72912 Closes-Bug: #1633585
9 lines
434 B
YAML
9 lines
434 B
YAML
---
|
|
fixes:
|
|
- Fixes a problem where the deployment of a node would fail to continue
|
|
if a malformed MAC address was passed to the lookup mechanism in the
|
|
Ironic API. For example, if a node contains an Infiniband card, the
|
|
lookup used to fail because the agent ramdisk passes a MAC address
|
|
(or GID) with 20 octets (instead of the expected 6 octets) as part
|
|
of the lookup request. Invalid addresses are now ignored.
|