From d7fdb694ace3f2fde80e3fac6f3d485461d3343d Mon Sep 17 00:00:00 2001 From: Erik Berg Date: Wed, 24 Feb 2021 11:05:09 +0100 Subject: [PATCH] Add hide_create_volume option to defaults If you were ever looking for a way to hide this button, the feature was added in Stein, via https://review.opendev.org/c/openstack/horizon/+/605813 The default is False, and astute users will see this setting and override it in their user_variables.yml if needed. Change-Id: I293c3a8e806f7af3b540afa3d2040ec73e925008 --- defaults/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/defaults/main.yml b/defaults/main.yml index f78477bc..d1e72417 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -282,6 +282,7 @@ horizon_launch_instance_defaults: disable_volume: False disable_volume_snapshot: False create_volume: True + hide_create_volume: False ## Barbican UI Panel horizon_enable_barbican_ui: "{{ (groups['barbican_all'] is defined) and (groups['barbican_all'] | length > 0) }}"