mirror of https://github.com/ceph/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 <gabrioux@redhat.com>
(cherry picked from commit a86c2b8526
)
pull/3398/head
parent
2cea33f7fc
commit
8d93007e56
|
@ -155,11 +155,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 %}
|
||||
|
|
Loading…
Reference in New Issue