diff options
| author | Dean Troyer <dtroyer@gmail.com> | 2019-08-21 12:20:41 -0500 |
|---|---|---|
| committer | Dean Troyer <dtroyer@gmail.com> | 2019-08-27 11:08:50 -0500 |
| commit | 6fcc2608b17d84cf3699bb4a5bae692404393ca1 (patch) | |
| tree | 89b8d4bcfb2d61cb9523ecddaa1bd110242af2f2 /doc/source/cli | |
| parent | 6c818c492569bc9304c166a79bf812603cbb6358 (diff) | |
| download | python-openstackclient-6fcc2608b17d84cf3699bb4a5bae692404393ca1.tar.gz | |
Remove token_endpoint auth type
The token_endpoint was a compatibility auth type to maintain support
for the --url global option that dated back to the beginning of
OpenStack CLI auth. The common keystoneauth library implements
'admin_token' which provides the same functionality using
--endpoint rather than --url.
Change-Id: I1b9fbb96e447889a41b705324725a2ffc8ecfd9f
Signed-off-by: Dean Troyer <dtroyer@gmail.com>
Diffstat (limited to 'doc/source/cli')
| -rw-r--r-- | doc/source/cli/authentication.rst | 9 | ||||
| -rw-r--r-- | doc/source/cli/backwards-incompatible.rst | 8 |
2 files changed, 8 insertions, 9 deletions
diff --git a/doc/source/cli/authentication.rst b/doc/source/cli/authentication.rst index b153f541..f8aaadf4 100644 --- a/doc/source/cli/authentication.rst +++ b/doc/source/cli/authentication.rst @@ -39,15 +39,6 @@ There are at least three authentication types that are always available: (described below as token/endpoint) in that a token and an authentication URL are supplied and the plugin retrieves a new token. [Required: ``--os-auth-url``, ``--os-token``] -* **Token/Endpoint**: This is the original token authentication (known as 'token - flow' in the early CLI documentation in the OpenStack wiki). It requires - a token and a direct endpoint that is used in the API call. The difference - from the new Token type is this token is used as-is, no call is made - to the Identity service from the client. This type is most often used to - bootstrap a Keystone server where the token is the ``admin_token`` configured - in ``keystone.conf``. It will also work with other services and a regular - scoped token such as one obtained from a ``token issue`` command. - [Required: ``--os-url``, ``--os-token``] * **Others**: Other authentication plugins such as SAML, Kerberos, and OAuth1.0 are under development and also supported. To use them, they must be selected by supplying the ``--os-auth-type`` option. diff --git a/doc/source/cli/backwards-incompatible.rst b/doc/source/cli/backwards-incompatible.rst index da956b23..9d43754e 100644 --- a/doc/source/cli/backwards-incompatible.rst +++ b/doc/source/cli/backwards-incompatible.rst @@ -96,6 +96,14 @@ Release 4.0 * Removed in: 4.0 * Commit: https://review.opendev.org/612751 +14. Remove 'Token/Endpoint' auth plugin support (type ``token_endpoint``). + This remained as a compatibility for the ``admin_token`` auth type to + support the ``--url`` global option. That option is also now removed, + use ``--endpoint`` instead. + + * Removed in: 4.0 + * Commit: https://review.opendev.org/<tbd> + Release 3.12 ------------ |
