From cc7ff5fd4259bfe1ca5c72f69e135aa0e97975db Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Sun, 3 May 2020 18:26:33 +0300 Subject: [PATCH] Fix horizon_image_upload_mode naming Correct naming of horizon_image_upload_mode is horizon_images_upload_mode (image is plural)[1] [1] https://opendev.org/openstack/openstack-ansible-os_horizon/src/branch/master/defaults/main.yml#L171 Change-Id: I82ce16b23098a5c7adb5c13e9498c134fcf32afb --- inventory/group_vars/all/glance.yml | 2 +- inventory/group_vars/all/horizon.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/inventory/group_vars/all/glance.yml b/inventory/group_vars/all/glance.yml index fd74645ded..ef2b8ae573 100644 --- a/inventory/group_vars/all/glance.yml +++ b/inventory/group_vars/all/glance.yml @@ -23,4 +23,4 @@ glance_service_adminurl: "{{ openstack_service_adminuri_proto }}://{{ internal_l # When running RBD or horizon image upload mode is direct allow multiple locations. # See https://bugs.launchpad.net/openstack-ansible/+bug/1730722 for more on the # this topic. -glance_show_multiple_locations: "{{ (glance_default_store == 'rbd') or (horizon_image_upload_mode == 'direct') }}" +glance_show_multiple_locations: "{{ (glance_default_store == 'rbd') or (horizon_images_upload_mode == 'direct') }}" diff --git a/inventory/group_vars/all/horizon.yml b/inventory/group_vars/all/horizon.yml index 809e31a0ed..af78c6c85a 100644 --- a/inventory/group_vars/all/horizon.yml +++ b/inventory/group_vars/all/horizon.yml @@ -13,4 +13,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -horizon_image_upload_mode: direct +horizon_images_upload_mode: direct