From b83739b81b062ecdafb6ead9acb676b624c0960f Mon Sep 17 00:00:00 2001 From: ricolin Date: Mon, 7 Jul 2025 15:52:12 +0800 Subject: [PATCH] Fix cinder auth configs in nova Nova seems missing cinder configs for long in nova.conf Change-Id: I5d52662d35c379878a22d00195265bbdcc982bd9 Signed-off-by: ricolin --- nova/values.yaml | 17 +++++++++++++++++ releasenotes/notes/nova-29572c7b62b6ae0b.yaml | 4 ++++ 2 files changed, 21 insertions(+) create mode 100644 releasenotes/notes/nova-29572c7b62b6ae0b.yaml diff --git a/nova/values.yaml b/nova/values.yaml index cabaf72ac3..16f90b5f84 100644 --- a/nova/values.yaml +++ b/nova/values.yaml @@ -1470,6 +1470,7 @@ conf: auth_type: password auth_version: v3 cinder: + auth_type: password catalog_info: volumev3::internalURL database: max_retries: -1 @@ -1911,6 +1912,22 @@ endpoints: api: default: 9292 public: 80 + volumev3: + name: cinderv3 + hosts: + default: cinder-api + public: cinder + host_fqdn_override: + default: null + path: + default: '/v3/%(tenant_id)s' + healthcheck: /healthcheck + scheme: + default: http + port: + api: + default: 8776 + public: 80 compute: name: nova hosts: diff --git a/releasenotes/notes/nova-29572c7b62b6ae0b.yaml b/releasenotes/notes/nova-29572c7b62b6ae0b.yaml new file mode 100644 index 0000000000..e611276aa1 --- /dev/null +++ b/releasenotes/notes/nova-29572c7b62b6ae0b.yaml @@ -0,0 +1,4 @@ +--- +nova: + - Fix Cinder auth config in values.yaml +...