From 708e1f3c7aab53040abc4cfb2ca979e04ce0524a Mon Sep 17 00:00:00 2001 From: Doug Goldstein Date: Fri, 25 Jul 2025 16:32:55 -0500 Subject: [PATCH] fix(cinder): change default v3 volume path to current recommended Since the Yoga release you have not had to include the tenant_id in the catalog path. It is recommended to no longer include this for future compatibility. Change-Id: I198a6ceff5ec2ecbe4e20e7d4e68177903d4f1a6 Signed-off-by: Doug Goldstein --- cinder/values.yaml | 2 +- releasenotes/notes/cinder-a25114bef0ed2f56.yaml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/cinder-a25114bef0ed2f56.yaml diff --git a/cinder/values.yaml b/cinder/values.yaml index 757cd7a0e6..72d077a17c 100644 --- a/cinder/values.yaml +++ b/cinder/values.yaml @@ -1436,7 +1436,7 @@ endpoints: # crt: null # key: null path: - default: '/v3/%(tenant_id)s' + default: '/v3' healthcheck: /healthcheck scheme: default: 'http' diff --git a/releasenotes/notes/cinder-a25114bef0ed2f56.yaml b/releasenotes/notes/cinder-a25114bef0ed2f56.yaml new file mode 100644 index 0000000000..be1f7ab1ff --- /dev/null +++ b/releasenotes/notes/cinder-a25114bef0ed2f56.yaml @@ -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. +...