Merge "fix(nova): changed default v2.1 compute path to current recommended"

This commit is contained in:
Zuul
2025-10-01 19:18:33 +00:00
committed by Gerrit Code Review
2 changed files with 7 additions and 1 deletions

View File

@@ -1943,7 +1943,7 @@ endpoints:
# crt: null
# key: null
path:
default: "/v2.1/%(tenant_id)s"
default: "/v2.1/"
scheme:
default: 'http'
service: 'http'

View File

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