summaryrefslogtreecommitdiff
path: root/ironic/api
diff options
context:
space:
mode:
authorJulia Kreger <juliaashleykreger@gmail.com>2021-10-15 15:52:58 -0700
committerJulia Kreger <juliaashleykreger@gmail.com>2021-10-15 15:52:58 -0700
commit8e8c1b087ba510e58a8fab8d9ede5227c29bc2ee (patch)
treeca580e78f4fafa9ec2f6351f5a28645eb09bcbc2 /ironic/api
parentef5c1a3a4497ed5994b76a4f144d475602364e94 (diff)
downloadironic-8e8c1b087ba510e58a8fab8d9ede5227c29bc2ee.tar.gz
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
Diffstat (limited to 'ironic/api')
-rw-r--r--ironic/api/controllers/root.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ironic/api/controllers/root.py b/ironic/api/controllers/root.py
index 88681874e..9c3d72944 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()
}