Fix some grammar and spelling issues in release notes
Change-Id: Ib94c31b2dcf8de7879e7bd1c0b77e6de32c8c2cb
This commit is contained in:
parent
f9915931b2
commit
81cef3d863
@ -1,10 +1,9 @@
|
|||||||
---
|
---
|
||||||
features:
|
features:
|
||||||
- |
|
- |
|
||||||
enhance the introspection status returned from
|
Extend the introspection status returned from
|
||||||
``GET@/v1/introspection/<Node Id>`` to contain the ``uuid``, ``started_at``
|
``GET@/v1/introspection/<Node Id>`` to contain the ``uuid``, ``started_at``
|
||||||
and ``finished_at`` fields
|
and ``finished_at`` fields.
|
||||||
|
|
||||||
upgrade:
|
upgrade:
|
||||||
- |
|
- Add a new dependency, ``pytz``.
|
||||||
new dependencies: pytz
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
---
|
---
|
||||||
features:
|
features:
|
||||||
- Added a plugin to parse raw LLDP Basic Management, 802.1, and
|
- Add a plugin to parse raw LLDP Basic Management, 802.1, and
|
||||||
802.3 TLVs and store the data back in Swift.
|
802.3 TLVs and store the data in Swift.
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
---
|
---
|
||||||
features:
|
features:
|
||||||
- |
|
- |
|
||||||
Add an API endpoint for listing introspection statuses, operators can get
|
Add an API endpoint for listing introspection statuses. Operators can use
|
||||||
status for all running or previously run introspection processing.
|
this to get the status for all running or previously run introspection
|
||||||
|
processing.
|
||||||
|
|
||||||
- |
|
- |
|
||||||
Introduced a new configuration option ``api_max_limit`` that defines the
|
Introduce a new configuration option ``api_max_limit`` that defines the
|
||||||
maximum number of items per page when API results are paginated.
|
maximum number of items per page when API results are paginated.
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
fixes:
|
fixes:
|
||||||
- |
|
- |
|
||||||
DB's columns started_at and finished_at are defined as float type,
|
Change database columns ``started_at`` and ``finished_at`` to type
|
||||||
as result timestamp doesn't fit into default Float size. This change
|
DateTime from type Float so that timestamps fit into these columns
|
||||||
migrates columns type to DateTime.
|
correctly.
|
||||||
upgrade:
|
upgrade:
|
||||||
- |
|
- |
|
||||||
New migration from Float to DateTime consists data migration,
|
A database migration is required to change some columns from Float to
|
||||||
which could take some time, based on the number of introspection
|
DateTime type. This may take some time based on the number of introspection
|
||||||
statuses in DB.
|
statuses in DB.
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
---
|
---
|
||||||
fixes:
|
fixes:
|
||||||
- |
|
- |
|
||||||
Periodic clean up fails with DBDeadlock if introspection timeout.
|
Fix bug where periodic clean up failed with DBDeadlock if introspection
|
||||||
|
timed out.
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
fixes:
|
fixes:
|
||||||
- |
|
- |
|
||||||
The configuration of the ``periodic_clean_up`` and ``periodic_update`` tasks
|
Ensure the configuration options ``firewall.firewall_update_period`` and
|
||||||
is now applied after the file ``inspector.conf`` is read
|
``clean_up_period`` are applied to the ``periodic_clean_up`` and
|
||||||
|
``periodic_update`` tasks after the config file is read.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
fixes:
|
fixes:
|
||||||
- LLC hook now formats the chassis id and port id MAC addresses into Unix
|
- LLC hook now formats the chassis ID and port ID MAC addresses into Unix
|
||||||
format as expected by ironic.
|
format as expected by ironic.
|
||||||
- LLC hook ensures that correct port information is passed to patch_port
|
- LLC hook ensures that correct port information is passed to the patch_port
|
||||||
function
|
function
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
---
|
---
|
||||||
features:
|
features:
|
||||||
- |
|
- |
|
||||||
InfiniBand interface discovery is supported in the introspection.
|
InfiniBand interface discovery is now supported through introspection. The
|
||||||
Therefore the ironic-inspector will add the client-id to the corresponding
|
ironic-inspector will add the client-id to the corresponding ironic port
|
||||||
ironic port that represent InfiniBand interface. The ironic-inspector
|
that represents the InfiniBand interface. The ironic-inspector should be
|
||||||
should be configured with ``firewall.ethoib_interfaces`` to indicate what are
|
configured with a list of interfaces ``firewall.ethoib_interfaces`` to
|
||||||
Ethernet Over InfiniBand Interfaces that are used for DHCP.
|
indicate which Ethernet Over InfiniBand Interfaces are used for DHCP.
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
---
|
---
|
||||||
upgrade:
|
upgrade:
|
||||||
- |
|
- |
|
||||||
The configuration option "introspection_delay_drivers" was changed to
|
The default value for the configuration option
|
||||||
``.*``, which means that "introspection_delay" is now applied to all
|
"introspection_delay_drivers" was changed to ``.*``, which means that by
|
||||||
drivers. Set "introspection_delay" to 0 to disable the delay.
|
default "introspection_delay" is now applied to all drivers. Set
|
||||||
|
"introspection_delay" to 0 to disable the delay.
|
||||||
deprecations:
|
deprecations:
|
||||||
- |
|
- |
|
||||||
The configuration option "introspection_delay_drivers" is deprecated.
|
The configuration option "introspection_delay_drivers" is deprecated.
|
||||||
|
@ -11,6 +11,6 @@ issues:
|
|||||||
Node.state column.
|
Node.state column.
|
||||||
upgrade:
|
upgrade:
|
||||||
- Node.state and Node.version_id database columns are introduced.
|
- Node.state and Node.version_id database columns are introduced.
|
||||||
- The introspection state column defaults to the finished state.
|
- The introspection state column defaults to the state ``finished`` unless
|
||||||
If the introspection error column value on a node row isn't null,
|
the introspection error column value on a node row isn't null, then node
|
||||||
the node state is changed to error.
|
state is set to ``error``.
|
||||||
|
Loading…
Reference in New Issue
Block a user