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
This commit is contained in:
Julia Kreger 2021-10-15 15:52:58 -07:00
parent ef5c1a3a44
commit 8e8c1b087b
2 changed files with 3 additions and 3 deletions

View File

@ -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": [
{

View File

@ -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()
}