summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kajinami <tkajinam@redhat.com>2021-07-25 02:31:35 +0900
committerTakashi Kajinami <tkajinam@redhat.com>2021-10-04 21:36:18 +0900
commitc34bebae984612831e791e3a88064e3e46ac1b07 (patch)
tree8bdecaf92799712b3f18b1dd9c996712f1f35ec6
parent241b79a469c0a905dbb1711e27c2559cf8efc156 (diff)
downloadheat-c34bebae984612831e791e3a88064e3e46ac1b07.tar.gz
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)
-rw-r--r--heat/common/config.py2
-rw-r--r--releasenotes/notes/shared_services_types-volumev3-a2c24233b5812e40.yaml5
2 files changed, 6 insertions, 1 deletions
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.