Add volumev3 to shared_services_types by default

The shared_services_types parameter defines the shared services located
in the other region. This parameter by default include volume and
volumev2 but doesn't include volumev3 which represents Bloack Storage
API v3.
This change adds volumev3 to the default items so that all of volume
services are included by default.

Change-Id: Idde186b2d88321e7902e4330780aabc369754b14
This commit is contained in:
Takashi Kajinami 2021-07-25 02:31:35 +09:00
parent 1828df32fa
commit 77bde0120b
2 changed files with 6 additions and 1 deletions

View File

@ -65,7 +65,7 @@ service_opts = [
cfg.StrOpt('region_name_for_shared_services',
help=_('Region name for shared services endpoints.')),
cfg.ListOpt('shared_services_types',
default=['image', 'volume', 'volumev2'],
default=['image', 'volume', 'volumev2', 'volumev3'],
help=_('The shared services located in the other region.'
'Needs region_name_for_shared_services option to '
'be set for this to take effect.')),

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Now the ``[DEFAULT] shared_services_types`` option includes ``volumev3``
service type by default.