Keystone: deprecate the separate admin service
It's not needed since Identity v3 and only consumes resources. Deprecate it with the intention to drop it in Yoga. Change-Id: I477042af86263422ea12f6e9bf710bfff89e36c4
This commit is contained in:
parent
d4ddc05399
commit
05c13dfd9e
@ -350,7 +350,7 @@ keystone:
|
|||||||
username: "{{ admin_username }}"
|
username: "{{ admin_username }}"
|
||||||
password: "{{ admin_password }}"
|
password: "{{ admin_password }}"
|
||||||
project_name: admin
|
project_name: admin
|
||||||
admin_url: "{{ api_protocol }}://{{ internal_ip }}:35357/v3/"
|
admin_url: "{{ keystone_api_url }}"
|
||||||
public_url: "{{ keystone_api_url }}"
|
public_url: "{{ keystone_api_url }}"
|
||||||
internal_url: "{{ api_protocol }}://127.0.0.1:5000/v3/"
|
internal_url: "{{ api_protocol }}://127.0.0.1:5000/v3/"
|
||||||
region_name: "RegionOne"
|
region_name: "RegionOne"
|
||||||
|
@ -56,9 +56,9 @@ Below is the full data structure.
|
|||||||
username: admin
|
username: admin
|
||||||
password: ChangeThisPa55w0rd
|
password: ChangeThisPa55w0rd
|
||||||
project_name: admin
|
project_name: admin
|
||||||
admin_url: "http://127.0.0.1:35357/v2.0/"
|
admin_url: "http://127.0.0.1:5000/v3/"
|
||||||
public_url: "http://127.0.0.1:5000/v2.0/"
|
public_url: "http://127.0.0.1:5000/v3/"
|
||||||
internal_url: "http://127.0.0.1:5000/v2.0/"
|
internal_url: "http://127.0.0.1:5000/v3/"
|
||||||
region_name: "RegionOne"
|
region_name: "RegionOne"
|
||||||
message_queue:
|
message_queue:
|
||||||
username: keystone
|
username: keystone
|
||||||
|
@ -69,7 +69,7 @@ keystone:
|
|||||||
username: "{{ admin_username }}"
|
username: "{{ admin_username }}"
|
||||||
password: "{{ admin_password }}"
|
password: "{{ admin_password }}"
|
||||||
project_name: admin
|
project_name: admin
|
||||||
admin_url: "{{ api_protocol }}://{{ internal_ip }}:35357/v3/"
|
admin_url: "{{ keystone_api_url }}"
|
||||||
public_url: "{{ keystone_api_url }}"
|
public_url: "{{ keystone_api_url }}"
|
||||||
internal_url: "{{ api_protocol }}://127.0.0.1:5000/v3/"
|
internal_url: "{{ api_protocol }}://127.0.0.1:5000/v3/"
|
||||||
region_name: "RegionOne"
|
region_name: "RegionOne"
|
||||||
|
@ -15,6 +15,7 @@ server {
|
|||||||
uwsgi_param SCRIPT_NAME '';
|
uwsgi_param SCRIPT_NAME '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
{# TODO(dtantsur): remove the separate admin endpoint after Xena #}
|
||||||
server {
|
server {
|
||||||
{% if enable_tls | bool %}
|
{% if enable_tls | bool %}
|
||||||
listen 35357 ssl;
|
listen 35357 ssl;
|
||||||
|
10
releasenotes/notes/keystone-admin-9eadd531de3f20ce.yaml
Normal file
10
releasenotes/notes/keystone-admin-9eadd531de3f20ce.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
upgrade:
|
||||||
|
- |
|
||||||
|
The ``admin`` Keystone endpoint will be upgraded from using port 35357
|
||||||
|
(a separate admin API) to use port 5000 (the default Identity API).
|
||||||
|
deprecations:
|
||||||
|
- |
|
||||||
|
The separate Keystone admin API (served at port 35357) is deprecated and
|
||||||
|
will be removed in a future release. Please update your applications to
|
||||||
|
refer to port 5000 only for Keystone operations.
|
Loading…
x
Reference in New Issue
Block a user