Merge "Add cinder auth config to nova-cell nova.conf.j2"

This commit is contained in:
Zuul 2020-08-21 15:45:02 +00:00 committed by Gerrit Code Review
commit e53dae8eff
2 changed files with 13 additions and 0 deletions

View File

@ -106,6 +106,13 @@ num_retries = 3
[cinder]
catalog_info = volumev3:cinderv3:internalURL
os_region_name = {{ openstack_region_name }}
auth_url = {{ keystone_admin_url }}
auth_type = password
project_domain_name = {{ default_project_domain_name }}
user_domain_id = {{ default_user_domain_id }}
project_name = service
username = {{ cinder_keystone_user }}
password = {{ cinder_keystone_password }}
cafile = {{ openstack_cacert }}
{% endif %}

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes an issue during deleting evacuated instances
with encrypted block devices.
`LP#1891462 <https://launchpad.net/bugs/1891462>`__