From 3c4c652deb1aefb5b709e4a07fc1e41574fc383f Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Thu, 14 Aug 2025 09:48:54 +0200 Subject: [PATCH] [doc] Extend Horizon integration documentation Change-Id: Icd1f28c3d13e8e678f75e98b3a9bdaf2bbf508d8 Signed-off-by: Dmitriy Rabotyagov --- doc/source/configure-cinder.rst | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/doc/source/configure-cinder.rst b/doc/source/configure-cinder.rst index 3d07c547..5ef3130f 100644 --- a/doc/source/configure-cinder.rst +++ b/doc/source/configure-cinder.rst @@ -148,7 +148,11 @@ back up to an external swift installation. cinder_service_backup_compression_algorithm: zlib cinder_service_backup_metadata_version: 2 -During installation of cinder, the backup service is configured. + During installation of cinder, the backup service is configured. + +#. If Horizon is used, you might also need to define + ``horizon_enable_cinder_backup: true`` explicitly and run horizon playbook + to enable the Backup panel in Horizon. Using Ceph for cinder backups @@ -223,6 +227,23 @@ By default, no horizon configuration is set. that a volume creation request without an explicit volume type succeeds. +#. You may also configure parameters for the Instance launch menu, + like hide "Create Volume" question and always create Cinder volumes + for instances. For that you may define following variable: + + .. code-block:: yaml + + horizon_launch_instance_defaults: + create_volume: True + hide_create_volume: True + disable_image: False + disable_instance_snapshot: False + disable_volume: False + disable_volume_snapshot: False + default_availability_zone: any + + Please check available options for this parameter in + `Horizon docs `_ Configuring cinder to use LVM ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~