ironic-inspector/releasenotes/notes/port-creation-plugin-c0405ec646b1051d.yaml
Dmitry Tantsur 9575d31920 Move port creation to validate_interfaces hook
Currently port logic is placed inconsistently: port creation is in core processing,
while port deletion is in validate_interfaces before_update. This changes moves
port creation there as well. This should only affect deployments that tamper with
validation_interfaces hook, as previously port creation was run just before running
before_update hooks.

This allows deployments to replace port creation logic by replacing the
validate_interfaces hook.

Change-Id: Idd8f748fdf31fc694bd7b554837e509024716c18
Partial-Bug: #1667472
2017-04-11 17:58:56 +02:00

8 lines
308 B
YAML

---
upgrade:
- |
Ports creating logic was moved from core processing code to the
``validate_interfaces`` processing hook. This may affect deployments
that disable this hook or replace it with something else. Also make
sure to place this hook before any hooks expecting ports to be created.