Revert "Do not forcibly enable Glance multiple locations for RBD backend"

This reverts commit d632cc3c4d.

Change-Id: I516745e2b761b1a6c97dcf858800507dc921d11f
Closes-Bug: 1842938
This commit is contained in:
Giulio Fidente 2019-09-05 15:00:38 +00:00
parent d632cc3c4d
commit 7fc7c3a1c1
1 changed files with 13 additions and 1 deletions

View File

@ -224,6 +224,18 @@ conditions:
glance_workers_unset: {equals : [{get_param: GlanceWorkers}, '']}
service_debug_unset: {equals : [{get_param: GlanceDebug}, '']}
cinder_backend_enabled: {equals: [{get_param: GlanceBackend}, cinder]}
glance_multiple_locations:
or:
- {equals : [{get_param: GlanceShowMultipleLocations}, true]}
- and:
# Keep this for compat, but ignore NovaEnableRbdBackend if it's a role param
- equals:
- get_param: GlanceBackend
- rbd
- equals:
- get_param: NovaEnableRbdBackend
- true
resources:
@ -280,7 +292,7 @@ outputs:
glance::keystone::authtoken::project_domain_name: 'Default'
glance::api::pipeline: 'keystone'
glance::api::show_image_direct_url: true
glance::api::show_multiple_locations: {get_param: GlanceShowMultipleLocations}
glance::api::show_multiple_locations: {if: [glance_multiple_locations, true, false]}
glance::api::os_region_name: {get_param: KeystoneRegion}
glance::api::image_member_quota: {get_param: GlanceImageMemberQuota}
glance::api::enabled_import_methods: {get_param: GlanceEnabledImportMethods}