Merge "Fix trove module imports"

This commit is contained in:
Zuul 2024-06-05 22:23:33 +00:00 committed by Gerrit Code Review
commit 43636d7f34
2 changed files with 10 additions and 3 deletions

View File

@ -19,9 +19,9 @@ transport_url = {{ rpc_transport_url }}
nova_proxy_admin_pass = {{ trove_keystone_password }}
nova_proxy_admin_tenant_name = service
nova_proxy_admin_user = trove
remote_nova_client = trove.common.single_tenant_remote.nova_client_trove_admin
remote_cinder_client = trove.common.single_tenant_remote.cinder_client_trove_admin
remote_neutron_client = trove.common.single_tenant_remote.neutron_client_trove_admin
remote_nova_client = trove.common.clients_admin.nova_client_trove_admin
remote_cinder_client = trove.common.clients_admin.cinder_client_trove_admin
remote_neutron_client = trove.common.clients_admin.neutron_client_trove_admin
{% endif %}
nova_compute_endpoint_type = internalURL

View File

@ -0,0 +1,7 @@
---
fixes:
- |
Fixes trove module imports.
Path to the modules needed by trove-api changed in source trove
package so the configuration was updated.
`LP#1937120 <https://launchpad.net/bugs/1937120>`__