Train Series (2.8.0 - 3.1.x) Release Notes¶
3.1.2¶
Bug Fixes¶
Fails with a clear TypeError when a session is not provided to
client.Clientorv1.client.Client. Before we used to throw:_construct_http_client() takes at least 1 argument
3.1.1¶
Bug Fixes¶
Fixes an issue where some failure modes of communication with the Ironic API could result in an exception that circumvents the client’s retry mechanisms. In particular this includes HTTP 503 service unavailable which is seen when Ironic operates behind a load balancer, and no backend is available to handle the request.
3.1.0¶
Upgrade Notes¶
An implicit dependency on
oslo.configis now explicit.
Bug Fixes¶
Removes the requirement on passing either
endpoint_overrideoros_ironic_api_versiontoget_client. This is only required for efficient caching of API versions and shouldn’t be a hard requirement.
openstack baremetal node list --ownerwas returning an error instead of a list of nodes for the specified owner. It has been fixed.See story 2006563 for details.
Fixes a confusing error message when a session is not provided for
ironicclient.v1.client.Client.
With the removal of the
HTTPClientclass in the release 3.0.0, it is now mandatory to pass a session intoironicclient.v1.client.Client. The helper callironicclient.client.get_clientcan also be used to construct a session implicitly.
Fixes
TypeErrorwhen the bare metal endpoint cannot be detected from a session. A properEndpointNotFoundexception is raised now.
Fixes using
endpoint_overridewith theSessionClient.
3.0.0¶
Upgrade Notes¶
Removes deprecated argument
endpointfrom the v1.client.Client constructor. Please use the standard keystoneauth argument nameendpoint_overrideinstead.
Removes deprecated
common.http.HTTPClientclass. Thecommon.http.SessionClientclass should be used instead.
Removing deprecated keystone arguments in favor of standardized argument naming.
The long deprecated
ironiccommand has been removed. Theopenstack baremetalcommand must now be used. Please update any scripts that you may be using with ironic.
Bug Fixes¶
Fixes an issue where automatic pagination was broken when ironic is deployed at a subpath (e.g. http://localhost/ironic).
2.8.0¶
New Features¶
Adds the
--nodeargument tobaremetal allocation createto support allocation backfilling.
Adds support for the allocation update API introduced in API version 1.57. Adds new commands:
openstack baremetal allocation setopenstack baremetal allocation unset
Bug Fixes¶
Prevent trying to access endpoints with
/v1/v1when using endpoint overrides containing/v1.