479a78706a
The admin interface for endpoints never had any real use, the functionality was the same as for the public or internal endpoints, except for Keystone. Even for Keystone with API v3 it would no longer really be needed, but it is still being required by some libraries that cannot be changed in order to stay backwards compatible. Signed-off-by: Dr. Jens Harbott <harbott@osism.tech> Change-Id: Icf3bf08deab2c445361f0a0124d87ad8b0e4e9d9
16 lines
638 B
YAML
16 lines
638 B
YAML
---
|
|
features:
|
|
- |
|
|
With this release, kolla-ansible no longer creates admin endpoints for any
|
|
service other than Keystone. Make sure that you only reference public or
|
|
internal endpoints in your applications and configurations.
|
|
upgrade:
|
|
- |
|
|
With this release, kolla-ansible no longer creates admin endpoints for any
|
|
service other than Keystone. Existing endpoints will not be removed
|
|
automatically, if you want to clean up your existing cloud, you can use a
|
|
command like::
|
|
|
|
openstack endpoint list --interface admin -f value | \
|
|
awk '!/keystone/ {print $1}' | xargs openstack endpoint delete
|