From: Guillaume Abrioux Date: Thu, 29 Nov 2018 09:16:52 +0000 (+0100) Subject: config: write jinja comment with appropriate syntax X-Git-Tag: v4.0.0beta1~160 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=a86c2b85263f84891e2cbf7e782f7ac8891257b3;p=ceph-ansible.git config: write jinja comment with appropriate syntax jinja comment should be written using the jinja syntax `{# ... #}` Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1654441 Signed-off-by: Guillaume Abrioux --- diff --git a/roles/ceph-config/templates/ceph.conf.j2 b/roles/ceph-config/templates/ceph.conf.j2 index a8a54f8e8..a21b0e4e9 100644 --- a/roles/ceph-config/templates/ceph.conf.j2 +++ b/roles/ceph-config/templates/ceph.conf.j2 @@ -89,11 +89,13 @@ filestore xattr use omap = true {% set _num_osds = num_osds | default(0) | int %} [osd] {% if is_hci and _num_osds > 0 %} -{% if ansible_memtotal_mb * 1048576 * hci_safety_factor / _num_osds > osd_memory_target %} # hci_safety_factor is the safety factor for HCI deployments +{# hci_safety_factor is the safety factor for HCI deployments #} +{% if ansible_memtotal_mb * 1048576 * hci_safety_factor / _num_osds > osd_memory_target %} {% set _osd_memory_target = (ansible_memtotal_mb * 1048576 * hci_safety_factor / _num_osds) | int %} {% endif %} {% elif _num_osds > 0 %} -{% if ansible_memtotal_mb * 1048576 * non_hci_safety_factor / _num_osds > osd_memory_target %} # non_hci_safety_factor is the safety factor for dedicated nodes +{# non_hci_safety_factor is the safety factor for dedicated nodes #} +{% if ansible_memtotal_mb * 1048576 * non_hci_safety_factor / _num_osds > osd_memory_target %} {% set _osd_memory_target = (ansible_memtotal_mb * 1048576 * non_hci_safety_factor / _num_osds) | int %} {% endif %} {% endif %}