mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-05-03 10:33:25 +02:00
12 lines
328 B
Plaintext
12 lines
328 B
Plaintext
![]() |
[
|
||
|
{% for product in bm_mem_alloc_rules.keys() | list %}
|
||
|
{
|
||
|
"product":"{{ product }}",
|
||
|
"defaultHeap":"{{ bm_mem_alloc_rules[product].heap }}",
|
||
|
"defaultDirect":"{{ bm_mem_alloc_rules[product].direct }}",
|
||
|
"sparePercent":{{ bm_mem_alloc_rules[product].spare }}
|
||
|
}{% if not loop.last %},{% endif %}
|
||
|
|
||
|
{% endfor %}
|
||
|
]
|