diff options
author | Akihiro Motoki <amotoki@gmail.com> | 2018-12-23 04:01:04 +0900 |
---|---|---|
committer | Akihiro Motoki <amotoki@gmail.com> | 2018-12-23 04:02:22 +0900 |
commit | d32359e0110fa27469fd33fb2197cfc6c45b8c93 (patch) | |
tree | f5866d99347aadeb6ec74c6386a0fc3ad07dfd57 /doc/source/configuration/settings.rst | |
parent | 25b6706f503b5377c4eccba74fc7fcdc07a82bfb (diff) | |
download | horizon-d32359e0110fa27469fd33fb2197cfc6c45b8c93.tar.gz |
SHOW_KEYSTONE_V2_RC defaults to False
In favor of keystone v2 support, SHOW_KEYSTONE_V2_RC now defaults
to False. SHOW_KEYSTONE_V2_RC setting is also deprecated.
Along with this change, "v3" part of "OpenStack RC File (Identity API v3)"
is now unnecessary, so "v3" information is dropped.
Change-Id: If0359e2dc1f2c8fb5f3c87046fd23043f94abc21
Diffstat (limited to 'doc/source/configuration/settings.rst')
-rw-r--r-- | doc/source/configuration/settings.rst | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/doc/source/configuration/settings.rst b/doc/source/configuration/settings.rst index 7e28a7660..cb0c85b88 100644 --- a/doc/source/configuration/settings.rst +++ b/doc/source/configuration/settings.rst @@ -826,7 +826,16 @@ SHOW_KEYSTONE_V2_RC .. versionadded:: 13.0.0(Queens) -Default: ``True`` +.. versionchanged:: 15.0.0(Stein) + + The default value is changed from ``True`` to ``False`` + in favor of the deprecation of keystone v2 API support in horizon. + +.. deprecated:: 15.0.0(Stein) + + This option will be dropped in 16.0.0(Train) release. + +Default: ``False`` Controls whether the keystone v2 openrc file is accessible from the user menu and the api access panel. @@ -858,7 +867,21 @@ USER_MENU_LINKS .. versionadded:: 13.0.0(Queens) -Default:: +Default (when ``SHOW_KEYSTONE_V2_RC`` is ``False``): + +.. code-block:: python + + [ + {'name': _('OpenStack RC File'), + 'icon_classes': ['fa-download', ], + 'url': 'horizon:project:api_access:openrc', + 'external': False, + } + ] + +Default (when ``SHOW_KEYSTONE_V2_RC`` is ``True``): + +.. code-block:: python [ {'name': _('OpenStack RC File v2'), |