Merge "Add a note in "nova service-delete" help about deleting computes"

This commit is contained in:
Zuul 2019-02-26 01:48:45 +00:00 committed by Gerrit Code Review
commit d64677701c
2 changed files with 20 additions and 2 deletions

View File

@ -3289,6 +3289,12 @@ nova service-delete
Delete the service.
.. important:: If deleting a nova-compute service, be sure to stop the actual
``nova-compute`` process on the physical host *before* deleting the
service with this command. Failing to do so can lead to the running
service re-creating orphaned **compute_nodes** table records in the
database.
**Positional arguments:**
``<id>``

View File

@ -3700,7 +3700,13 @@ def do_service_force_down(cs, args):
help=_('ID of service as an integer. Note that this may not '
'uniquely identify a service in a multi-cell deployment.'))
def do_service_delete(cs, args):
"""Delete the service by integer ID."""
"""Delete the service by integer ID.
If deleting a nova-compute service, be sure to stop the actual
nova-compute process on the physical host before deleting the
service with this command. Failing to do so can lead to the running
service re-creating orphaned compute_nodes table records in the database.
"""
cs.services.delete(args.id)
@ -3708,7 +3714,13 @@ def do_service_delete(cs, args):
@api_versions.wraps('2.53')
@utils.arg('id', metavar='<id>', help=_('ID of service as a UUID.'))
def do_service_delete(cs, args):
"""Delete the service by UUID ID."""
"""Delete the service by UUID ID.
If deleting a nova-compute service, be sure to stop the actual
nova-compute process on the physical host before deleting the
service with this command. Failing to do so can lead to the running
service re-creating orphaned compute_nodes table records in the database.
"""
cs.services.delete(args.id)