fix(nova): use recommended cinder path

Follow I198a6ceff5ec2ecbe4e20e7d4e68177903d4f1a6 and use the recommended
cinder volume v3 path since Yoga.

Change-Id: I16f3168bd68fa2f9cb452fd58a126d4d7fdb6a02
Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
This commit is contained in:
Doug Goldstein
2025-08-17 13:09:44 -05:00
parent 35052e51b3
commit 5bfc19d67d
2 changed files with 7 additions and 1 deletions

View File

@@ -1920,7 +1920,7 @@ endpoints:
host_fqdn_override:
default: null
path:
default: '/v3/%(tenant_id)s'
default: '/v3'
healthcheck: /healthcheck
scheme:
default: http

View File

@@ -0,0 +1,6 @@
---
upgrade:
- |
Change the default volume v3 path to not include the tenant_id. The is the
current recommended approach and has not been necessary since the Yoga release.
...