From df0c64ed32b8d83304541fac4f02973682f5cb57 Mon Sep 17 00:00:00 2001 From: Michal Nasiadka Date: Fri, 25 Oct 2019 13:19:01 +0200 Subject: [PATCH] Disable cinder-backup in cinder-lvm scenario cinder-backup[1] does not include an lvm driver, we could use posix filesystem driver - but it's not supported in kolla-ansible currently. [1]: https://docs.openstack.org/cinder/rocky/drivers.html#backup-drivers Change-Id: I847a55692a59c52990186332388f571a04c377b7 Closes-Bug: #1847049 --- tests/templates/globals-default.j2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/templates/globals-default.j2 b/tests/templates/globals-default.j2 index 614787ca02..b0f5718fda 100644 --- a/tests/templates/globals-default.j2 +++ b/tests/templates/globals-default.j2 @@ -71,6 +71,8 @@ glance_enable_rolling_upgrade: "yes" {% if scenario == "cinder-lvm" %} enable_cinder: "yes" +# lvm backup driver for cinder-backup does not exist +enable_cinder_backup: "no" enable_cinder_backend_lvm: "yes" {% endif %}