Merge "fix(cinder): change default v3 volume path to current recommended"

This commit is contained in:
Zuul
2025-08-13 03:51:35 +00:00
committed by Gerrit Code Review
2 changed files with 7 additions and 1 deletions

View File

@@ -1437,7 +1437,7 @@ endpoints:
# crt: null
# key: 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.
...