Merge "[FFU] Remove cinder's v1 keystone service" into stable/ussuri

This commit is contained in:
Zuul 2020-10-11 03:02:30 +00:00 committed by Gerrit Code Review
commit 92f11213c8
2 changed files with 20 additions and 0 deletions

View File

@ -411,6 +411,15 @@ outputs:
- cinder_api_cron
tripleo_delegate_to: "{{ groups['cinder_api'] | default([]) }}"
external_deploy_tasks:
- name: Clean up legacy Cinder keystone catalog entries
become: true
os_keystone_service:
cloud: {get_param: RootStackName}
name: cinderv3
service_type: volume
state: absent
when:
- step|int == 4
- name: Manage Cinder Volume Type
become: true
vars:

View File

@ -0,0 +1,11 @@
---
upgrade:
- |
Cinder's legacy "volume" service and its associated endpoints are
automatically removed from the keystone catalog. The "volume" service is
associated with Cinder's v1 API, which was removed in Queens.
fixes:
- |
The keystone catalog is automatically updated to remove any entries
associated with Cinder's v1 API "volume" service. This fixes bug
`1897761 <https://bugs.launchpad.net/tripleo/+bug/1897761>`_.