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

Use the recommended nova compute v2.1 path since Mitaka openstack release.
Since the Mitake release no need to include the tenant_id in the catalog path.

Change-Id: I13e1c671f5ded921e3d888e7f9228ab7b778320b
Signed-off-by: nitin-29-gupta <nitin291989@gmail.com>
This commit is contained in:
nitin-29-gupta
2025-10-01 13:57:45 +00:00
parent 2004408153
commit 76960a20bc
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.
...