From c34bebae984612831e791e3a88064e3e46ac1b07 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Sun, 25 Jul 2021 02:31:35 +0900 Subject: 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 (cherry picked from commit 77bde0120b57b5c1b511279e5f4131f189ada5f8) --- heat/common/config.py | 2 +- .../notes/shared_services_types-volumev3-a2c24233b5812e40.yaml | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/shared_services_types-volumev3-a2c24233b5812e40.yaml diff --git a/heat/common/config.py b/heat/common/config.py index e978fdb40..27c643c38 100644 --- a/heat/common/config.py +++ b/heat/common/config.py @@ -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.')), diff --git a/releasenotes/notes/shared_services_types-volumev3-a2c24233b5812e40.yaml b/releasenotes/notes/shared_services_types-volumev3-a2c24233b5812e40.yaml new file mode 100644 index 000000000..0ae5baae6 --- /dev/null +++ b/releasenotes/notes/shared_services_types-volumev3-a2c24233b5812e40.yaml @@ -0,0 +1,5 @@ +--- +fixes: + - | + Now the ``[DEFAULT] shared_services_types`` option includes ``volumev3`` + service type by default. -- cgit v1.2.1