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 +...