Use cinder v3 api by default

cinder v2 was deprecated long ago and with [1]
it's removed.

[1] https://review.opendev.org/c/openstack/python-cinderclient/+/791834

Change-Id: I9dcae930cf8a0fd5e381e32af63f310f1e6a2c57
This commit is contained in:
yatinkarel 2021-08-17 12:30:25 +05:30
parent b089ef8c54
commit 56f2e8b220
2 changed files with 7 additions and 2 deletions

View File

@ -14,7 +14,7 @@
#
# [*cinder_client_api_version*]
# (required) Version of Cinder API to use in cinderclient.
# Default is 2.
# Default is 3.
#
# [*glance_client_api_version*]
# (required) Version of Glance API to use in glanceclient.
@ -242,7 +242,7 @@ class watcher (
$purge_config = false,
$use_ssl = false,
$ceilometer_client_api_version = '2',
$cinder_client_api_version = '2',
$cinder_client_api_version = '3',
$glance_client_api_version = '2',
$neutron_client_api_version = '2',
$nova_client_api_version = $::os_service_default,

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Default value of the ``watcher::cinder_client_api_version`` has been updated from
``2`` to ``3`` to use cinder v3 API instead of removed v2.