deprecate command `cinder endpoints`

The command `cinder endpoints` will now print a warning message,
indicating that users should use openstackclient instead.
This has already been done in nova's CLI [1].

Related-Bug: 1608166

[1] https://github.com/openstack/python-novaclient/blob/master/novaclient/v2/shell.py#L4071-L4072

Change-Id: If68b40cf8116aa0ec386d8067c58703cb7b7c0da
This commit is contained in:
Steve Martinelli 2016-08-01 13:01:17 -04:00
parent 0daa4aa023
commit 7a566e6915
3 changed files with 17 additions and 0 deletions

View File

@ -23,6 +23,7 @@ import copy
import os
import sys
import time
import warnings
from cinderclient import exceptions
from cinderclient import utils
@ -654,6 +655,10 @@ def do_type_key(cs, args):
def do_endpoints(cs, args):
"""Discovers endpoints registered by authentication service."""
warnings.warn(
"``cinder endpoints`` is deprecated, use ``openstack catalog list`` "
"instead. The ``cinder endpoints`` command may be removed in the P "
"release or next major release of cinderclient (v2.0.0 or greater).")
catalog = cs.client.service_catalog.catalog
for e in catalog:
utils.print_dict(e['endpoints'][0], e['name'])

View File

@ -21,6 +21,7 @@ import copy
import os
import sys
import time
import warnings
import six
@ -1034,6 +1035,10 @@ def do_type_access_remove(cs, args):
@utils.service_type('volumev3')
def do_endpoints(cs, args):
"""Discovers endpoints registered by authentication service."""
warnings.warn(
"``cinder endpoints`` is deprecated, use ``openstack catalog list`` "
"instead. The ``cinder endpoints`` command may be removed in the P "
"release or next major release of cinderclient (v2.0.0 or greater).")
catalog = cs.client.service_catalog.catalog
for e in catalog:
utils.print_dict(e['endpoints'][0], e['name'])

View File

@ -0,0 +1,7 @@
---
deprecations:
- |
The ``cinder endpoints`` command has been deprecated. This
command performs an identity operation, and should now be
handled by ``openstack catalog list``.
[Bug `1608166 <https://bugs.launchpad.net/bugs/1608166>`_]