From 8e8c1b087ba510e58a8fab8d9ede5227c29bc2ee Mon Sep 17 00:00:00 2001 From: Julia Kreger Date: Fri, 15 Oct 2021 15:52:58 -0700 Subject: [PATCH] There is no aim, we do deploy/manage baremetal. Fix the root description header, since the Ironic project is very far past the days of when we were aiming to provision baremetal. Change-Id: I21f6058fe29b1495dbde63ec09a1227568dc3f08 --- api-ref/source/samples/api-root-response.json | 2 +- ironic/api/controllers/root.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/api-ref/source/samples/api-root-response.json b/api-ref/source/samples/api-root-response.json index da86dc29da..45a903d552 100644 --- a/api-ref/source/samples/api-root-response.json +++ b/api-ref/source/samples/api-root-response.json @@ -11,7 +11,7 @@ "status": "CURRENT", "version": "1.37" }, - "description": "Ironic is an OpenStack project which aims to provision baremetal machines.", + "description": "Ironic is an OpenStack project which enables the provision and management of baremetal machines.", "name": "OpenStack Ironic API", "versions": [ { diff --git a/ironic/api/controllers/root.py b/ironic/api/controllers/root.py index 88681874e2..9c3d72944d 100644 --- a/ironic/api/controllers/root.py +++ b/ironic/api/controllers/root.py @@ -27,8 +27,8 @@ V1 = v1.Controller() def root(): return { 'name': "OpenStack Ironic API", - 'description': ("Ironic is an OpenStack project which aims to " - "provision baremetal machines."), + 'description': ("Ironic is an OpenStack project which enables the " + "provision and management of baremetal machines."), 'default_version': version.default_version(), 'versions': version.all_versions() }