From e57db22374439d7d6602659092acee27bc72fd23 Mon Sep 17 00:00:00 2001 From: Logan V Date: Sat, 3 Aug 2019 16:42:43 -0500 Subject: [PATCH] Fix nova_rbd_inuse var The var did not contain jinja braces even though it is a jinja expression. Change-Id: Ibcd5a9292390bb9b60c33570649c9afb05e17fff --- defaults/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaults/main.yml b/defaults/main.yml index 896f5573..16a5e692 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -394,7 +394,7 @@ nova_ceph_client_uuid: 517a4663-3927-44bc-9ea7-4a90e1cd4c66 nova_cinder_rbd_inuse: False # Used to determine if we need a Ceph client -nova_rbd_inuse: "(nova_libvirt_images_rbd_pool is defined) or (nova_cinder_rbd_inuse | bool)" +nova_rbd_inuse: "{{ (nova_libvirt_images_rbd_pool is defined) or (nova_cinder_rbd_inuse | bool) }}" ## General Nova configuration # If ``nova_osapi_compute_workers`` is unset the system will use half the number of available VCPUS to