From 6c51709a1a66cac8a0b6d46d4b5ee1352e152f00 Mon Sep 17 00:00:00 2001 From: Riccardo Pittau Date: Wed, 8 Apr 2020 15:21:14 +0200 Subject: [PATCH] Move minimum ironic version to latest ocata All other API versions from releases before that are not supported anymore. Change-Id: I49fb3e4facdec42a4dab343c46a84f3cba6d2b7c --- ironic_python_agent/ironic_api_client.py | 2 +- releasenotes/notes/min-ironic-ocata-dff80e567783e87c.yaml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/min-ironic-ocata-dff80e567783e87c.yaml diff --git a/ironic_python_agent/ironic_api_client.py b/ironic_python_agent/ironic_api_client.py index 9217710c4..19ce2ed1a 100644 --- a/ironic_python_agent/ironic_api_client.py +++ b/ironic_python_agent/ironic_api_client.py @@ -32,7 +32,7 @@ CONF = cfg.CONF LOG = log.getLogger(__name__) # TODO(TheJulia): This should be increased at some point. -MIN_IRONIC_VERSION = (1, 22) +MIN_IRONIC_VERSION = (1, 31) AGENT_VERSION_IRONIC_VERSION = (1, 36) AGENT_TOKEN_IRONIC_VERSION = (1, 62) diff --git a/releasenotes/notes/min-ironic-ocata-dff80e567783e87c.yaml b/releasenotes/notes/min-ironic-ocata-dff80e567783e87c.yaml new file mode 100644 index 000000000..fee77a2b8 --- /dev/null +++ b/releasenotes/notes/min-ironic-ocata-dff80e567783e87c.yaml @@ -0,0 +1,6 @@ +--- +upgrade: + - | + The minimum supported versions of the ironic API is now 1.31, + corresponding to the latest available in the Ocata release. + All versions before that one are not supported anymore.