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

Fixes an issue during deleting evacuated instances with encrypted block
devices.

Change-Id: I9b9b689ef7e1e41b597e2c5f6b96f3ed011193c5
Closes-Bug: 1891462
Related-Bug: 1850279
This commit is contained in:
Jegor van Opdorp 2020-08-13 11:45:26 +02:00 committed by Radosław Piliszek
parent a90aa3e443
commit de16013bd6
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>`__